We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a3c08 commit 644b705Copy full SHA for 644b705
src/test/java/tests/ConformanceTest.java
@@ -144,6 +144,8 @@ private static ImmutableSet<ReportedFact> analyze(
144
return result.getUnexpectedDiagnostics().stream()
145
.map(d -> DetailMessage.parse(d.getMessage(), testDirectory))
146
.filter(Objects::nonNull)
147
+ // Do not filter out messages without details.
148
+ // .filter(DetailMessage::hasDetails)
149
.map(DetailMessageReportedFact::new)
150
.collect(toImmutableSet());
151
}
0 commit comments