File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/test/java/org/kohsuke/github Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -201,16 +201,16 @@ public void testMakeLatestRelease() throws Exception {
201201
202202 /**
203203 * Tests creation of the release with `generate_release_notes parameter on`.
204- * @throws Exception if any failure has happened.
204+ *
205+ * @throws Exception
206+ * if any failure has happened.
205207 */
206208 @ Test
207209 public void testCreateReleaseWithNotes () throws Exception {
208210 GHRepository repo = gitHub .getRepository ("hub4j-test-org/testCreateRelease" );
209211
210212 String tagName = mockGitHub .getMethodName ();
211- GHRelease release = new GHReleaseBuilder (repo , tagName )
212- .generateReleaseNotes (true )
213- .create ();
213+ GHRelease release = new GHReleaseBuilder (repo , tagName ).generateReleaseNotes (true ).create ();
214214 try {
215215 GHRelease releaseCheck = repo .getRelease (release .getId ());
216216
You can’t perform that action at this time.
0 commit comments