We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9137b07 commit b5620ddCopy full SHA for b5620dd
sqldev/src/test/java/org/utplsql/sqldev/test/runner/UtplsqlRunnerPanelTest.xtend
@@ -88,7 +88,8 @@ class UtplsqlRunnerPanelTest {
88
run.counter.success = run.counter.success + 1
89
run.status="utplsql.test.e"
90
val end = System.currentTimeMillis
91
- run.status = String.format(UtplsqlResources.getString("RUNNER_FINNISHED_TEXT"), new Double(end-start)/1000)
+ run.executionTime = new Double(end-start)/1000
92
+ run.status = UtplsqlResources.getString("RUNNER_FINNISHED_TEXT")
93
panel.update(run.reporterId)
94
Thread.sleep(2000);
95
frame.dispose
0 commit comments