mirror of https://github.com/python/cpython
#11873: fix test regex so it covers windows os.sep as well.
This commit is contained in:
parent
dfde0d4650
commit
a3bb2f5514
|
@ -248,7 +248,7 @@ class CommandLineTests(unittest.TestCase):
|
|||
self.assertEqual(b'', quiet)
|
||||
|
||||
def test_regexp(self):
|
||||
self.assertRunOK('-q', '-x', 'ba[^\/]*$', self.pkgdir)
|
||||
self.assertRunOK('-q', '-x', r'ba[^\/]*$', self.pkgdir)
|
||||
self.assertNotCompiled(self.barfn)
|
||||
self.assertCompiled(self.initfn)
|
||||
|
||||
|
|
Loading…
Reference in New Issue