Skip to content

Commit

Permalink
[NOID] solved compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
vga91 committed Nov 20, 2024
1 parent b3b097c commit 894b789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion full/src/test/java/apoc/util/UtilsExtendedTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void testMultipleCharsetsCompressionWithDifferentResults() {

public static String checkEnvVar(String envKey) {
String value = System.getenv(envKey);
Assume.assumeNotNull("No %s environment configured".formatted(envKey), value);
Assume.assumeNotNull(String.format("No %s environment configured", envKey), value);
return value;
}
}

0 comments on commit 894b789

Please sign in to comment.