From bbc26324745953d9eda5acb8e2b596e95232cc0e Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Thu, 31 Oct 2024 11:18:39 +0100 Subject: [PATCH] - --- cmd/root/user_agent_command_exec_id_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root/user_agent_command_exec_id_test.go b/cmd/root/user_agent_command_exec_id_test.go index 1dc993e17..5c4365107 100644 --- a/cmd/root/user_agent_command_exec_id_test.go +++ b/cmd/root/user_agent_command_exec_id_test.go @@ -14,7 +14,7 @@ import ( func TestWithCommandExecIdInUserAgent(t *testing.T) { ctx := withCommandExecIdInUserAgent(context.Background()) - // Check that the command trace ID is in the user agent string. + // Check that the command exec ID is in the user agent string. ua := useragent.FromContext(ctx) re := regexp.MustCompile(`cmd-exec-id/([a-f0-9-]+)`) matches := re.FindAllStringSubmatch(ua, -1)