Skip to content

Commit

Permalink
[FLINK-18042][tests] More helpful error message if jar cannot be found
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Jun 9, 2020
1 parent e0c6f76 commit f40936c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static Path getResourceJar(final String jarNameRegex) {
case 0:
throw new RuntimeException(
new FileNotFoundException(
String.format("No jar could be found that matches the pattern %s.", jarNameRegex)
String.format("No jar could be found that matches the pattern %s. This could mean that the test module must be rebuilt via maven.", jarNameRegex)
)
);
case 1:
Expand Down

0 comments on commit f40936c

Please sign in to comment.