summaryrefslogtreecommitdiff
path: root/simplejson/tests/test_indent.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2012-12-30 19:55:51 -0800
committerBob Ippolito <bob@redivi.com>2012-12-30 19:55:51 -0800
commit02e24f4f856b065aa31d79d4726ce6668a20779e (patch)
tree28fb30571a6bdb0e6b032ae62d5a92b3edf52791 /simplejson/tests/test_indent.py
parent57d980277f8d1d6324904edd43e1a730572b64b6 (diff)
parentdd76051b3f65625635d39277daf60135215c9d10 (diff)
downloadsimplejson-02e24f4f856b065aa31d79d4726ce6668a20779e.tar.gz
Merge branch 'py3'v3.0.0
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))