From ac808777d672faf05ae6d3ac1d534f2cf4db68ee Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sun, 23 Oct 2022 00:46:56 -0700 Subject: [PATCH] Fix debug info for hishtory timeout issue --- client/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client_test.go b/client/client_test.go index 2c0807c..fb9f1dd 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -811,7 +811,7 @@ func waitForBackgroundSavesToComplete(t *testing.T) { return } lastOut = stdout.String() - lastErr = stdout.String() + lastErr = stderr.String() time.Sleep(50 * time.Millisecond) } t.Fatalf("failed to wait until hishtory wasn't running (lastOut=%#v, lastErr=%#v)", lastOut, lastErr)