Skip to content

Commit

Permalink
Remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
rsandell authored Dec 14, 2022
1 parent 92d00b4 commit 48aad8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ArchitectureTest {
.and().haveSimpleNameNotContaining("_jmh")
.and().doNotHaveModifier(JavaModifier.ABSTRACT).should().bePublic()
.andShould().notBeAnnotatedWith(RunWith.class)
.because("test classes are not part of the API and should be hidden in a package");;
.because("test classes are not part of the API and should be hidden in a package");

@ArchTest
static final ArchRule NO_TEST_API_CALLED = ArchitectureRules.NO_TEST_API_CALLED;
Expand Down

0 comments on commit 48aad8c

Please sign in to comment.