summaryrefslogtreecommitdiff
path: root/simplejson/tests/test_decode.py
diff options
context:
space:
mode:
Diffstat (limited to 'simplejson/tests/test_decode.py')
-rw-r--r--simplejson/tests/test_decode.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/simplejson/tests/test_decode.py b/simplejson/tests/test_decode.py
index 37b231b..5c488c6 100644
--- a/simplejson/tests/test_decode.py
+++ b/simplejson/tests/test_decode.py
@@ -1,8 +1,9 @@
+from __future__ import absolute_import
import decimal
from unittest import TestCase
-from StringIO import StringIO
import simplejson as json
+from simplejson.compat import StringIO
from simplejson import OrderedDict
class TestDecode(TestCase):