Skip to content

Commit

Permalink
8293099: JFR: Typo in TestRemoteDump.java
Browse files Browse the repository at this point in the history
Reviewed-by: mgronlun
  • Loading branch information
egahlin committed Oct 3, 2022
1 parent 03f25a9 commit bc668b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/jdk/jdk/jfr/jmx/streaming/TestRemoteDump.java
Expand Up @@ -119,7 +119,7 @@ private static void testMultipleDumps() throws Exception {
var f1 = service.submit(f);
var f2 = service.submit(f);
var f3 = service.submit(f);
if (!f1.get() && !f1.get() && !f3.get()) {
if (!f1.get() || !f2.get() || !f3.get()) {
throw new Exception("Failed to dump multiple recordings simultanously");
}
service.shutdown();
Expand Down

0 comments on commit bc668b9

Please sign in to comment.