diff --git a/test/python_magic_test.py b/test/python_magic_test.py index 624a443..d51587c 100755 --- a/test/python_magic_test.py +++ b/test/python_magic_test.py @@ -134,7 +134,7 @@ def test_extension(self): self.assert_values(m, { # some versions return '' for the extensions of a gz file, # including w/ the command line. Who knows... - 'test.gz': ('gz/tgz/tpz/zabw/svgz', '', '???'), + 'test.gz': ('gz/tgz/tpz/zabw/svgz/adz/kmy/xcfgz', 'gz/tgz/tpz/zabw/svgz', '', '???'), 'name_use.jpg': 'jpeg/jpg/jpe/jfif', }) except NotImplementedError: @@ -227,6 +227,5 @@ def test_pathlike(self): m = magic.Magic(mime=True) self.assertEqual('application/pdf', m.from_file(path)) - if __name__ == '__main__': unittest.main()