Skip to content

Commit f27b9bd

Browse files
committed
Fix assertion in testBug546710_ConsoleCreationRaceCondition(TestInfo)
CHeck the console of the second process.
1 parent afeaa45 commit f27b9bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

debug/org.eclipse.debug.tests/src/org/eclipse/debug/tests/console/ProcessConsoleManagerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,6 @@ public void testBug546710_ConsoleCreationRaceCondition(TestInfo testInfo) throws
148148
removeAction.run();
149149
TestUtil.waitForJobs(testInfo.getDisplayName(), ProcessConsoleManager.class, 0, 10000);
150150
assertNull(processConsoleManager.getConsole(process1), "First console not removed.");
151-
assertNull(processConsoleManager.getConsole(process1), "Second console not removed.");
151+
assertNull(processConsoleManager.getConsole(process2), "Second console not removed.");
152152
}
153153
}

0 commit comments

Comments
 (0)