Skip to content

Commit

Permalink
validate: launcher: Print test name in Result
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramiro Polla authored and tsaunier committed Feb 5, 2015
1 parent c0cefec commit d833a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validate/launcher/baseclasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def test_end(self):
self.thread.join()
self.time_taken = time.time() - self._starting_time

printc("Result: %s%s\n" % (self.result,
printc("%s: %s%s\n" % (self.classname, self.result,
" (" + self.message + ")" if self.message else ""),
color=utils.get_color_for_result(self.result))

Expand Down

1 comment on commit d833a51

@thiblahute
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK

Please sign in to comment.