Closedown
This commit is contained in:
@@ -96,7 +96,10 @@ public class TestingList extends Panel {
|
||||
//start next test
|
||||
if(iCurrentTestPos>=0 && testingList.isTestRunAllowed())
|
||||
{
|
||||
testingList.executeTest(iCurrentTestPos+1);
|
||||
final int position = iCurrentTestPos+1;
|
||||
SwingUtilities.invokeLater(() -> {
|
||||
testingList.executeTest(position);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -111,7 +114,10 @@ public class TestingList extends Panel {
|
||||
//start next test
|
||||
if(iCurrentTestPos>=0 && testingList.isTestRunAllowed())
|
||||
{
|
||||
testingList.executeTest(iCurrentTestPos+1);
|
||||
final int position = iCurrentTestPos+1;
|
||||
SwingUtilities.invokeLater(() -> {
|
||||
testingList.executeTest(position);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user