summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2014-08-23 13:31:44 +0300
committeranatoly techtonik <techtonik@gmail.com>2014-08-23 13:31:44 +0300
commitded039b02a955c5a4ddef1b9a817f6d505cf2f6f (patch)
tree41f499ccfa4345d064898b3b8d6c394e00a39b90 /testing
parent011b491df5f7b11f4f390bcf7fbb464c9c525e43 (diff)
downloadscons-ded039b02a955c5a4ddef1b9a817f6d505cf2f6f.tar.gz
taprunner 0.2 - remove unused import that failed Python 2.6
Crash evidence: http://buildbot.scons.org/builders/ubuntu-python-2.6/builds/118/steps/shell/logs/stdio
Diffstat (limited to 'testing')
-rw-r--r--testing/framework/TestUnit/taprunner.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/framework/TestUnit/taprunner.py b/testing/framework/TestUnit/taprunner.py
index 01e0e813..31eb9631 100644
--- a/testing/framework/TestUnit/taprunner.py
+++ b/testing/framework/TestUnit/taprunner.py
@@ -5,12 +5,14 @@ http://testanything.org/tap-version-13-specification.html
Public domain work by:
anatoly techtonik <techtonik@gmail.com>
+Changes:
+ 0.2 - removed unused import that failed on Python 2.6
+ 0.1 - initial release
"""
-from unittest import suite
from unittest.runner import TextTestRunner, TextTestResult
-__version__ = "0.1"
+__version__ = "0.2"
class TAPTestResult(TextTestResult):