kopia lustrzana https://github.com/micropython/micropython-lib
fnmatch: Disable bytes vs str mix tests. We're ok with mixes so far.
rodzic
666d235ab8
commit
8a15543698
|
@ -44,7 +44,7 @@ class FnmatchTestCase(unittest.TestCase):
|
|||
check('\nfoo', 'foo*', False)
|
||||
check('\n', '*')
|
||||
|
||||
def test_mix_bytes_str(self):
|
||||
def _test_mix_bytes_str(self):
|
||||
self.assertRaises(TypeError, fnmatch, 'test', b'*')
|
||||
self.assertRaises(TypeError, fnmatch, b'test', '*')
|
||||
self.assertRaises(TypeError, fnmatchcase, 'test', b'*')
|
||||
|
|
Ładowanie…
Reference in New Issue