Skip to content

Commit

Permalink
Wrap line longer than 100 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Vaughan Jr committed Feb 6, 2023
1 parent fa1cf3b commit 103acf9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,8 @@ public void testGetJarsInDirectory() throws Exception {
for (Path jar: jars) {
URL url = jar.toUri().toURL();
assertTrue("the jar should match either of the jars",
url.equals(jar1.getCanonicalFile().toURI().toURL()) || url.equals(jar2.getCanonicalFile().toURI().toURL()));
url.equals(jar1.getCanonicalFile().toURI().toURL()) ||
url.equals(jar2.getCanonicalFile().toURI().toURL()));
}
}

Expand Down

0 comments on commit 103acf9

Please sign in to comment.