summaryrefslogtreecommitdiff
path: root/lib/python2.7/json/tests/test_default.py
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-04-29 18:06:20 -0700
committerJosh Gao <jmgao@google.com>2016-04-29 18:18:37 -0700
commit039a04d8a5dda0ffad38364a9de21e66843db1a4 (patch)
treeae775a6a70c7c350fa9eeb9a9dd6c191ec041b9a /lib/python2.7/json/tests/test_default.py
parent0eac5d899bac5ad9180ff04f80cd2edb5ffa3f19 (diff)
downloadlinux-x86-039a04d8a5dda0ffad38364a9de21e66843db1a4.tar.gz
Taken from NDK build 2824841. Bug: http://b/28244367 Change-Id: I61369cec1cf7da5b5f352e2c6b618887ab4d525c
Diffstat (limited to 'lib/python2.7/json/tests/test_default.py')
-rw-r--r--lib/python2.7/json/tests/test_default.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/python2.7/json/tests/test_default.py b/lib/python2.7/json/tests/test_default.py
deleted file mode 100644
index c2a07f6..0000000
--- a/lib/python2.7/json/tests/test_default.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from json.tests import PyTest, CTest
-
-
-class TestDefault(object):
- def test_default(self):
- self.assertEqual(
- self.dumps(type, default=repr),
- self.dumps(repr(type)))
-
-
-class TestPyDefault(TestDefault, PyTest): pass
-class TestCDefault(TestDefault, CTest): pass