Skip to content

Commit

Permalink
Fixed spotless issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
anenviousguest committed Nov 20, 2023
1 parent 15a6e85 commit ad393c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/java/org/kohsuke/github/GHReleaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,16 +201,16 @@ public void testMakeLatestRelease() throws Exception {

/**
* Tests creation of the release with `generate_release_notes parameter on`.
* @throws Exception if any failure has happened.
*
* @throws Exception
* if any failure has happened.
*/
@Test
public void testCreateReleaseWithNotes() throws Exception {
GHRepository repo = gitHub.getRepository("hub4j-test-org/testCreateRelease");

String tagName = mockGitHub.getMethodName();
GHRelease release = new GHReleaseBuilder(repo, tagName)
.generateReleaseNotes(true)
.create();
GHRelease release = new GHReleaseBuilder(repo, tagName).generateReleaseNotes(true).create();
try {
GHRelease releaseCheck = repo.getRelease(release.getId());

Expand Down

0 comments on commit ad393c8

Please sign in to comment.