Skip to content

Commit

Permalink
test: GitEnricherTest, don't sign commits
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <[email protected]>
  • Loading branch information
manusa authored Oct 25, 2024
1 parent 68a22ad commit c3254c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ void setUp() throws Exception {
git = Git.init().setDirectory(baseDirectory).setInitialBranch("test-branch").call();
git.add().addFilepattern(".").call();
git.remoteAdd().setName("origin").setUri(new URIish("https://example.com/origin.git")).call();
commit = git.commit().setMessage("Initial commit").call();
commit = git.commit().setMessage("Initial commit").setSign(false).call();
}


Expand Down

0 comments on commit c3254c7

Please sign in to comment.