From 80398185857963300fe87c76538194713d3c7a8e Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 27 Oct 2024 15:25:33 +0100 Subject: [PATCH] fix: Broken formatting string Signed-off-by: Steffen Vogel --- pkg/capture_keylog_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/capture_keylog_test.go b/pkg/capture_keylog_test.go index 62490d0..d168c2b 100644 --- a/pkg/capture_keylog_test.go +++ b/pkg/capture_keylog_test.go @@ -51,7 +51,7 @@ func TestCaptureKeyLog(t *testing.T) { require.NoError(t, err, "Failed to add link") _, err = client.Run("curl", "--http2", "--silent", "--insecure", "--connect-timeout", 5, "https://server") - require.NoError(t, err, "cURL Request failed: %s") + require.NoError(t, err, "cURL Request failed: %s", err) // Wait until all traffic propagates through PCAP time.Sleep(time.Second)