Commit 03ca91cf authored by Roman Chernyatchik's avatar Roman Chernyatchik
Browse files

fixed [PY-2497] Show test results for selected test whether it's been passed or failed

parent a742278b
Branches unavailable Tags unavailable
No related merge requests found
Showing with 7 additions and 2 deletions
+7 -2
......@@ -340,8 +340,13 @@ public class SMTestProxy extends AbstractTestProxy {
public void printOn(final Printer printer) {
super.printOn(printer);
//Tests State, that provide and formats additional output
myState.printOn(printer);
invokeInAlarm(new Runnable() {
@Override
public void run() {
//Tests State, that provide and formats additional output
myState.printOn(printer);
}
});
}
public void addStdOutput(final String output, final Key outputType) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment