Skip to content

Commit

Permalink
Fix AssemblyTest when checkout dir is not called "flowtracker"
Browse files Browse the repository at this point in the history
  • Loading branch information
coekie committed Sep 9, 2024
1 parent 519d736 commit 02b1b87
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class AssemblyTest {
// dependencies on the classpath.
for (String classpathPart : System.getProperty("java.class.path").split(":")) {
if (!classpathPart.contains("flowtracker.jar")
&& !classpathPart.contains("flowtracker/flowtracker/target/classes")
&& !classpathPart.contains("flowtracker/flowtracker/target/test-classes")
&& !classpathPart.contains("flowtracker/target/classes")
&& !classpathPart.contains("flowtracker/target/test-classes")
&& !classpathPart.contains("junit")
&& !classpathPart.contains("hamcrest-core")) {
fail("Unexpected classpath in test: " + classpathPart);
Expand Down

0 comments on commit 02b1b87

Please sign in to comment.