diff --git a/tests/test_io.py b/tests/test_io.py index 0faf374..b467df9 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -100,7 +100,6 @@ def test_dict(self): 5 6 7 8 = =""").strip('\n') - print written_content assert written_content.strip('\n') == content def tearDown(self): @@ -120,7 +119,6 @@ def test_new_normal_usage(self): pe.save_as(array=content, dest_file_name=self.testfile) with open(self.testfile, "r") as f: written_content = json.load(f) - print written_content assert written_content == content def test_dict(self):