From 6d9e6a726eeae58b7fbb19fd8727cef4b4762f10 Mon Sep 17 00:00:00 2001 From: EinoPlasma <1805544976@qq.com> Date: Sun, 29 Dec 2024 21:03:38 +0800 Subject: [PATCH] Fix typo in test function name --- pgconn/ctxwatch/context_watcher_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgconn/ctxwatch/context_watcher_test.go b/pgconn/ctxwatch/context_watcher_test.go index 302aabe3..a18e7339 100644 --- a/pgconn/ctxwatch/context_watcher_test.go +++ b/pgconn/ctxwatch/context_watcher_test.go @@ -49,7 +49,7 @@ func TestContextWatcherContextCancelled(t *testing.T) { require.True(t, cleanupCalled, "Cleanup func was not called") } -func TestContextWatcherUnwatchdBeforeContextCancelled(t *testing.T) { +func TestContextWatcherUnwatchedBeforeContextCancelled(t *testing.T) { cw := ctxwatch.NewContextWatcher(&testHandler{ handleCancel: func(context.Context) { t.Error("cancel func should not have been called")