Add two spaces of padding after OK.

The times column isn't justified properly. If we pad OK with two spaces,
then the left-most character in the time column will always be in line
because FAIL will always have 4 characters in it.

Change-Id: I9006fa70049c8010716e50ad6264ff0747151b65
This commit is contained in:
Monty Taylor 2012-06-20 10:25:35 -07:00
parent c211d61f85
commit 5ad14d60e1
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ class Openstack(plugins.Plugin):
name = self._get_name(test)
self.times[name].append(time.time())
self._writeResult(test, "OK", "green", ".")
self._writeResult(test, "OK ", "green", ".")
self._result_addSuccess(test)
def _add_skip(self, test, reason):