diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-29 03:10:07 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-29 03:10:07 (GMT) |
commit | 4927633ab6c6895621d88d51ae2d7943426e2c04 (patch) | |
tree | d74c3d09406b38588f698f5e4f45cca6586a948e /Lib | |
parent | b32512ed9a1ab9912a9e0bdbb609ca1a19949355 (diff) | |
download | cpython-4927633ab6c6895621d88d51ae2d7943426e2c04.zip cpython-4927633ab6c6895621d88d51ae2d7943426e2c04.tar.gz cpython-4927633ab6c6895621d88d51ae2d7943426e2c04.tar.bz2 |
#16549: fix test failures on Windows.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/json_tests/test_tool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/json_tests/test_tool.py b/Lib/test/json_tests/test_tool.py index 1f2c8a2..0c39e56 100644 --- a/Lib/test/json_tests/test_tool.py +++ b/Lib/test/json_tests/test_tool.py @@ -42,7 +42,7 @@ class TestTool(unittest.TestCase): (sys.executable, '-m', 'json.tool'), stdin=subprocess.PIPE, stdout=subprocess.PIPE) as proc: out, err = proc.communicate(self.data.encode()) - self.assertEqual(out, self.expect.encode()) + self.assertEqual(out.splitlines(), self.expect.encode().splitlines()) self.assertEqual(err, None) def _create_infile(self): @@ -55,7 +55,7 @@ class TestTool(unittest.TestCase): def test_infile_stdout(self): infile = self._create_infile() rc, out, err = assert_python_ok('-m', 'json.tool', infile) - self.assertEqual(out, self.expect.encode()) + self.assertEqual(out.splitlines(), self.expect.encode().splitlines()) self.assertEqual(err, b'') def test_infile_outfile(self): |