forked from pool/python-rollbar
(gh#rollbar/pyrollbar#340), we can just ignore it. Adjust python-rollbar-no-unittest2.patch accordingly. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rollbar?expand=0&rev=18
15 lines
273 B
Diff
15 lines
273 B
Diff
--- a/rollbar/test/__init__.py
|
|
+++ b/rollbar/test/__init__.py
|
|
@@ -1,9 +1,9 @@
|
|
-import unittest2
|
|
+import unittest
|
|
|
|
|
|
SNOWMAN = b'\xe2\x98\x83'
|
|
SNOWMAN_UNICODE = SNOWMAN.decode('utf8')
|
|
|
|
|
|
-class BaseTest(unittest2.TestCase):
|
|
+class BaseTest(unittest.TestCase):
|
|
pass
|