summaryrefslogtreecommitdiff
path: root/simplejson/tests/test_indent.py
diff options
context:
space:
mode:
Diffstat (limited to 'simplejson/tests/test_indent.py')
-rw-r--r--simplejson/tests/test_indent.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/simplejson/tests/test_indent.py b/simplejson/tests/test_indent.py
index 1e6bdb1..a397cca 100644
--- a/simplejson/tests/test_indent.py
+++ b/simplejson/tests/test_indent.py
@@ -1,8 +1,8 @@
from unittest import TestCase
+import textwrap
import simplejson as json
-import textwrap
-from StringIO import StringIO
+from simplejson.compat import StringIO
class TestIndent(TestCase):
def test_indent(self):
@@ -83,4 +83,4 @@ class TestIndent(TestCase):
# Added in 2.1.4
self.assertEquals(
expect,
- json.dumps(lst, indent=0)) \ No newline at end of file
+ json.dumps(lst, indent=0))