summaryrefslogtreecommitdiff
path: root/tests/unit/test_jsonutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/test_jsonutils.py')
-rw-r--r--tests/unit/test_jsonutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_jsonutils.py b/tests/unit/test_jsonutils.py
index b6c0feb..35a9487 100644
--- a/tests/unit/test_jsonutils.py
+++ b/tests/unit/test_jsonutils.py
@@ -115,7 +115,7 @@ class ToPrimitiveTestCase(utils.BaseTestCase):
# If the cycle isn't caught, to_primitive() will eventually result in
# an exception due to excessive recursion depth.
- p = jsonutils.to_primitive(x)
+ jsonutils.to_primitive(x)
def test_instance(self):
class MysteryClass(object):