fnmatch: test_fnmatch: Disable tests for bytes arguments.

re-pcre doesn't work properly with bytes patterns so far, disable the test
until later.
pull/216/head
Paul Sokolovsky 2017-10-11 20:12:21 +03:00
rodzic 8cca4dffce
commit 98bf9edccc
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -55,6 +55,7 @@ class FnmatchTestCase(unittest.TestCase):
check('AbC', 'abc', 0, fnmatchcase)
check('abc', 'AbC', 0, fnmatchcase)
@unittest.skip("unsupported on MicroPython")
def test_bytes(self):
self.check_match(b'test', b'te*')
self.check_match(b'test\xff', b'te*\xff')