diff options
| author | Adam Hupp <adam@hupp.org> | 2017-11-20 09:26:08 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-20 09:26:08 -0800 |
| commit | b8ab66995a41dc68007732051e45c8e2ff1c9fb2 (patch) | |
| tree | f53cb2a1935137c2a9e0ce668ca49051c9bc50d2 | |
| parent | bec0d4428f6de11ffd90d19dfddb5af9c72d9c63 (diff) | |
| parent | c45ae3f04394dd190a97f12b350d97a50ec9a5ce (diff) | |
| download | python-magic-b8ab66995a41dc68007732051e45c8e2ff1c9fb2.tar.gz | |
Merge pull request #149 from hugovk/fix-ci
Fix the CI
| -rwxr-xr-x | test/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.py b/test/test.py index 78ddb2b..addccc6 100755 --- a/test/test.py +++ b/test/test.py @@ -94,7 +94,7 @@ class MagicTest(unittest.TestCase): self.assertEqual(m.from_file(filename), 'image/jpeg') m = magic.Magic(mime=True, keep_going=True) - self.assertEqual(m.from_file(filename), 'image/jpeg\\012- application/octet-stream') + self.assertEqual(m.from_file(filename), 'image/jpeg') def test_rethrow(self): |
