kopia lustrzana https://github.com/micropython/micropython-lib
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
rodzic
8cca4dffce
commit
98bf9edccc
|
@ -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')
|
||||
|
|
Ładowanie…
Reference in New Issue