Removes blank line.

This commit is contained in:
Lisa Roach 2019-03-06 19:12:54 -08:00
parent 697f1bf3a1
commit 5126064486
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,6 @@ from test.test_json import PyTest, CTest
from test.support import bigmemtest, _1G
class TestDump:
def test_dump(self):
sio = StringIO()
@ -48,6 +47,7 @@ class TestDump:
d[1337] = "true.dat"
self.assertEqual(self.dumps(d, sort_keys=True), '{"1337": "true.dat"}')
class TestPyDump(TestDump, PyTest): pass
class TestCDump(TestDump, CTest):