From 5ad14d60e1344bed5b81515932d2c157ef7e7d67 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 20 Jun 2012 10:25:35 -0700 Subject: [PATCH] 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 --- openstack/nose_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack/nose_plugin.py b/openstack/nose_plugin.py index 8086f44..07f2b16 100644 --- a/openstack/nose_plugin.py +++ b/openstack/nose_plugin.py @@ -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):