From dba10efa76d7e03763dc51ff9880dcc983159d0c Mon Sep 17 00:00:00 2001 From: Justin Chadwell Date: Tue, 22 Aug 2023 11:44:05 +0100 Subject: [PATCH] test: git tag test should not sign tags Co-authored-by: Alex Suraci Signed-off-by: Justin Chadwell --- source/git/source_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/git/source_test.go b/source/git/source_test.go index a518ca43bfe20..ac30d97b09111 100644 --- a/source/git/source_test.go +++ b/source/git/source_test.go @@ -586,7 +586,7 @@ func setupGitRepo(t *testing.T) gitRepoFixture { "echo sbb > foo13", "git add foo13", "git commit -m third", - "git tag lightweight-tag", + "git tag --no-sign lightweight-tag", "git checkout -B feature", "echo baz > ghi", "git add ghi",