Fix reporting of tests not in a class
Change-Id: I8d4fd114203de8500e17211cce608c2a92efd706
This commit is contained in:
parent
1439bd1e3d
commit
a1037419ef
@ -229,7 +229,7 @@ class Openstack(plugins.Plugin):
|
||||
stream.writeln("Slowest %i tests took %.2f secs:"
|
||||
% (len(slow_tests), slow_total_time))
|
||||
for time, test in sorted(slow_tests, reverse=True):
|
||||
name = '.'.join(test)
|
||||
name = '.'.join([str(i) for i in test])
|
||||
self.colorizer.writeln(" %.2f %s" % (time, name),
|
||||
self._get_color(time))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user