Closedown

This commit is contained in:
boccioli_m
2015-06-15 11:02:29 +02:00
parent 793294a732
commit cfde8e8315

View File

@@ -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);
});
}
}
}