Skip to content

Commit 7b3908f

Browse files
committed
-
1 parent 2b9a6a0 commit 7b3908f

File tree

19 files changed

+13
-2627
lines changed

19 files changed

+13
-2627
lines changed

LICENSE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ Python Toolbox includes third-party Python packages as subpackages that are used
1717

1818
* `Envelopes` by Tomasz Wójcik and others, MIT license.
1919
* `sortedcontainers` by Grant Jenks and others, Apache license 2.0.
20-
* `unittest2` by Robert Collins and others, BSD license.
2120
* `decorator` by Michele Simionato and others, BSD license.

python_toolbox/MIT_license.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ Python Toolbox includes third-party Python packages as subpackages that are used
1717

1818
* `Envelopes` by Tomasz Wójcik and others, MIT license.
1919
* `sortedcontainers` by Grant Jenks and others, Apache license 2.0.
20-
* `unittest2` by Robert Collins and others, BSD license.
2120
* `decorator` by Michele Simionato and others, BSD license.

python_toolbox/cute_testing.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
import nose
77
import sys
88
import inspect
9-
10-
from python_toolbox.third_party import unittest2
9+
import unittest
1110

1211
from python_toolbox import context_management
1312
from python_toolbox.exceptions import CuteException
@@ -141,7 +140,7 @@ def assert_polite_wrapper(wrapper, wrapped=None, same_signature=True):
141140
assert wrapper.__wrapped__ == wrapped
142141

143142

144-
class TestCase(unittest2.TestCase, context_management.ContextManager):
143+
class TestCase(unittest.TestCase, context_management.ContextManager):
145144
setUp = misc_tools.ProxyProperty('.setup')
146145
tearDown = misc_tools.ProxyProperty('.tear_down')
147146
def manage_context(self):

python_toolbox/third_party/unittest2/__init__.py

Lines changed: 0 additions & 71 deletions
This file was deleted.

python_toolbox/third_party/unittest2/__main__.py

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)