From 447bae8a9a5ab91ad5dcc6b31f87d06e42e600fc Mon Sep 17 00:00:00 2001 From: Garet Halliday <me@garet.holiday> Date: Thu, 14 Sep 2023 15:17:32 -0500 Subject: [PATCH] test against control directly --- test/tester_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/tester_test.go b/test/tester_test.go index 6b32c603..5c58b1f1 100644 --- a/test/tester_test.go +++ b/test/tester_test.go @@ -94,7 +94,7 @@ func TestTester(t *testing.T) { Password: password, } - control, err = daisyChain(creds, control, 16) + parent, err := daisyChain(creds, control, 16) if err != nil { t.Error(err) return @@ -106,7 +106,7 @@ func TestTester(t *testing.T) { Credentials: creds, })) transactionPool.AddRecipe("runner", recipe.NewRecipe(recipe.Options{ - Dialer: control, + Dialer: parent, })) g.Add("runner", "transaction", transactionPool) @@ -115,7 +115,7 @@ func TestTester(t *testing.T) { ServerResetQuery: "discard all", })) sessionPool.AddRecipe("runner", recipe.NewRecipe(recipe.Options{ - Dialer: control, + Dialer: parent, })) g.Add("runner", "session", sessionPool) -- GitLab