Skip to content

Commit ccb1958

Browse files
minor fix
1 parent faaeb06 commit ccb1958

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

liquidjava-verifier/src/main/java/liquidjava/diagnostics/errors/RefinementError.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public String getCounterExampleString() {
5050
// subtyping check, so the counterexample maps the symbolic name back to its compile-time value
5151
found.getValue().getResolvedConstantNames(foundVarNames);
5252
expected.getValue().getResolvedConstantNames(foundVarNames);
53+
List<String> foundAssignments = found.getValue().getConjuncts().stream().map(Expression::toString).toList();
5354
String counterexampleString = counterexample.assignments().stream()
5455
// only include variables that appear in the found value and are not already fixed there
5556
.filter(a -> CommandLineLauncher.cmdArgs.debugMode || (foundVarNames.contains(a.first())

0 commit comments

Comments
 (0)