Skip to content

Commit b5620dd

Browse files
remove execution time from finish text
1 parent 9137b07 commit b5620dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sqldev/src/test/java/org/utplsql/sqldev/test/runner/UtplsqlRunnerPanelTest.xtend

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ class UtplsqlRunnerPanelTest {
8888
run.counter.success = run.counter.success + 1
8989
run.status="utplsql.test.e"
9090
val end = System.currentTimeMillis
91-
run.status = String.format(UtplsqlResources.getString("RUNNER_FINNISHED_TEXT"), new Double(end-start)/1000)
91+
run.executionTime = new Double(end-start)/1000
92+
run.status = UtplsqlResources.getString("RUNNER_FINNISHED_TEXT")
9293
panel.update(run.reporterId)
9394
Thread.sleep(2000);
9495
frame.dispose

0 commit comments

Comments
 (0)