summaryrefslogtreecommitdiffstats
path: root/python/samba/subunit/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba/subunit/run.py')
-rwxr-xr-xpython/samba/subunit/run.py21
1 files changed, 2 insertions, 19 deletions
diff --git a/python/samba/subunit/run.py b/python/samba/subunit/run.py
index 33efd4f6f7..dbe6b241c8 100755
--- a/python/samba/subunit/run.py
+++ b/python/samba/subunit/run.py
@@ -24,6 +24,8 @@
$ python -m samba.subunit.run mylib.tests.test_suite
"""
+from samba.subunit import UTC
+
import datetime
import os
import sys
@@ -31,25 +33,6 @@ import traceback
import unittest
-# From http://docs.python.org/library/datetime.html
-_ZERO = datetime.timedelta(0)
-
-# A UTC class.
-
-class UTC(datetime.tzinfo):
- """UTC"""
-
- def utcoffset(self, dt):
- return _ZERO
-
- def tzname(self, dt):
- return "UTC"
-
- def dst(self, dt):
- return _ZERO
-
-utc = UTC()
-
# Whether or not to hide layers of the stack trace that are
# unittest/testtools internal code. Defaults to True since the
# system-under-test is rarely unittest or testtools.