Skip to content

Commit

Permalink
Removed unneeded sleep() from TestRunner
Browse files Browse the repository at this point in the history
  • Loading branch information
mbknor committed Aug 30, 2011
1 parent 82a994f commit fb2931d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion modules/testrunner/app/controllers/TestRunner.java
Expand Up @@ -63,7 +63,6 @@ public static void run(String test) throws Exception {
}
if (test.endsWith(".class")) {
Play.getFile("test-result").mkdir();
java.lang.Thread.sleep(250);
TestEngine.TestResults results = TestEngine.run(test.substring(0, test.length() - 6));
response.status = results.passed ? 200 : 500;
Template resultTemplate = TemplateLoader.load("TestRunner/results.html");
Expand Down

0 comments on commit fb2931d

Please sign in to comment.