Skip to content

Commit

Permalink
Merge branch 'invariant-test-in-diff' into canonically-consistent-gra…
Browse files Browse the repository at this point in the history
…pheme-clusters
  • Loading branch information
eggrobin committed Jan 10, 2024
2 parents 546071e + 008fa45 commit 40c4eab
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -450,13 +450,13 @@ private static void equivalencesLine(String line, ParsePosition pp, int lineNumb
"The implication ⇐ is " + rightImpliesLeftCounterexamples.isEmpty() + ".");
}
}
if (failure) {
for (var errorLine : errorMessage) {
println(errorLine);
}
for (var errorLine : errorMessage) {
println(errorLine);
}
errorMessage.addAll(counterexamples);
reportTestFailure(lineNumber, String.join("\n", errorMessage).replace('\t', ' '));
if (failure) {
reportTestFailure(lineNumber, String.join("\n", errorMessage).replace('\t', ' '));
}
out.println(failure ? "<table class='f'>" : "<table>");
for (String counterexample : counterexamples) {
out.println("<tr><td>");
Expand Down

0 comments on commit 40c4eab

Please sign in to comment.