From bd7b252e56e1fb2902b714b2449f4e34f545fda3 Mon Sep 17 00:00:00 2001 From: Ashmeen Kaur Date: Mon, 29 Apr 2024 04:47:42 +0000 Subject: [PATCH] minor log fix --- tools/integration_tests/interrupt/git_clone_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/integration_tests/interrupt/git_clone_test.go b/tools/integration_tests/interrupt/git_clone_test.go index f7684a08a6..46eb8091ea 100644 --- a/tools/integration_tests/interrupt/git_clone_test.go +++ b/tools/integration_tests/interrupt/git_clone_test.go @@ -87,7 +87,7 @@ func (s *ignoreInterruptsTest) TestGitClone(t *testing.T) { output, err := cloneRepository() if err != nil { - t.Errorf("cloneRepository() failed: %s: %v", string(output), err) + t.Errorf("Git clone failed: %s: %v", string(output), err) } } @@ -132,7 +132,7 @@ func (s *ignoreInterruptsTest) TestGitCommitWithChanges(t *testing.T) { output, err = nonEmptyCommit() if err != nil { - t.Errorf("Git empty commit failed: %s: %v", string(output), err) + t.Errorf("Git commit failed: %s: %v", string(output), err) } }