summaryrefslogtreecommitdiff
path: root/tests/decorator_utils_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/decorator_utils_test.py')
-rwxr-xr-xtests/decorator_utils_test.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/decorator_utils_test.py b/tests/decorator_utils_test.py
index 195dd63..2cc2b5f 100755
--- a/tests/decorator_utils_test.py
+++ b/tests/decorator_utils_test.py
@@ -3,16 +3,13 @@
import unittest
import decorator_utils as du
-
import unittest_utils as uu
class TestDecorators(unittest.TestCase):
-
def test_singleton(self):
-
@du.singleton
- class FooBar():
+ class FooBar:
pass
x = FooBar()