File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
sqldev/src/main/java/org/utplsql/sqldev/runner Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
129
129
run. executionTime = event. executionTime
130
130
run. errorStack = event. errorStack
131
131
run. serverOutput = event. serverOutput
132
- run. status = String . format( UtplsqlResources . getString(" RUNNER_FINNISHED_TEXT" ), event . executionTime )
132
+ run. status = UtplsqlResources . getString(" RUNNER_FINNISHED_TEXT" )
133
133
panel. update(reporterId)
134
134
}
135
135
@@ -182,7 +182,7 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
182
182
} else {
183
183
test. startTime = sysdate
184
184
}
185
- run. status = event. id
185
+ run. status = ' ' ' « event.id»... ' ' '
186
186
run. currentTestNumber = event. testNumber
187
187
run. currentTest = test
188
188
panel. update(reporterId)
@@ -241,6 +241,8 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
241
241
}
242
242
if (run. totalNumberOfTests < 0 ) {
243
243
run. status = UtplsqlResources . getString(" RUNNER_NO_TESTS_FOUND_TEXT" )
244
+ run. executionTime = new Double (System . currentTimeMillis - run. start)/ 1000
245
+ run. endTime = sysdate
244
246
run. totalNumberOfTests = 0
245
247
panel. update(reporterId)
246
248
}
You can’t perform that action at this time.
0 commit comments