Skip to content

Commit

Permalink
refactor: Remove public visibility of JUnit 5 tests
Browse files Browse the repository at this point in the history
Partial fix for #496

Co-authored-by: Moderne <team@moderne.io>
  • Loading branch information
timtebeek and TeamModerne committed Feb 6, 2023
1 parent b6fd19b commit 9f90cf1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import static org.assertj.core.api.Assertions.assertThat;

public class AbstractRewriteMojoTest {
class AbstractRewriteMojoTest {

@ParameterizedTest
@ValueSource(strings = {"rewrite.yml", "https://httpstat.us/200"})
Expand All @@ -32,7 +32,7 @@ public void execute() {
}
};

if(!loc.startsWith("http")) {
if (!loc.startsWith("http")) {
Files.write(temp.resolve(loc), "rewrite".getBytes(StandardCharsets.UTF_8));
}

Expand Down

0 comments on commit 9f90cf1

Please sign in to comment.