summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/colorizer.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/colorizer.py b/tools/colorizer.py
index d205eb0..d26df6f 100644
--- a/tools/colorizer.py
+++ b/tools/colorizer.py
@@ -42,7 +42,6 @@
"""Display a subunit stream through a colorized unittest test runner."""
import heapq
-import six
import subunit
import sys
import unittest
@@ -277,7 +276,7 @@ class SubunitTestResult(testtools.TestResult):
self.stopTestRun()
def stopTestRun(self):
- for cls in list(six.iterkeys(self.results)):
+ for cls in self.results:
self.writeTestCase(cls)
self.stream.writeln()
self.writeSlowTests()