Skip to content

Commit 0c2aa0b

Browse files
committed
tests: Fix error message on an unexpected finding
1 parent 7bd1e6e commit 0c2aa0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bazel/tools/java/com/code_intelligence/jazzer/tools/FuzzTargetTestWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ private static void verifyFuzzerOutput(
269269
throw new IllegalStateException(
270270
String.format(
271271
"Got finding %s, but expected one of: %s",
272-
findings.get(0), String.join(", ", expectedFindings)));
272+
finding, String.join(", ", expectedFindings)));
273273
}
274274
}
275275
List<String> unexpectedFrames =

0 commit comments

Comments
 (0)