File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/liquidjava/diagnostics/errors Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1111
1212 <groupId >io.github.liquid-java</groupId >
1313 <artifactId >liquidjava-verifier</artifactId >
14- <version >0.0.16 </version >
14+ <version >0.0.18 </version >
1515 <name >liquidjava-verifier</name >
1616 <description >LiquidJava Verifier</description >
1717 <url >https://github.com/liquid-java/liquidjava</url >
Original file line number Diff line number Diff line change @@ -54,7 +54,8 @@ public String getCounterExampleString() {
5454 // join with "&&"
5555 .collect (Collectors .joining (" && " ));
5656
57- if (counterexampleString .isEmpty () || counterexampleString .equals (found .getValue ().toString ()))
57+ String foundString = VariableFormatter .formatText (found .getValue ().toString ());
58+ if (counterexampleString .isEmpty () || counterexampleString .equals (foundString ))
5859 return null ;
5960
6061 return counterexampleString ;
You can’t perform that action at this time.
0 commit comments