summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/test/test_pathlib.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py
index 751764f..01b1af6 100755
--- a/Lib/test/test_pathlib.py
+++ b/Lib/test/test_pathlib.py
@@ -1626,6 +1626,7 @@ class PosixPathTest(_BasePathTest, unittest.TestCase):
given = set(p.glob("FILEa"))
expect = set() if not support.fs_is_case_insensitive(BASE) else given
self.assertEqual(given, expect)
+ self.assertEqual(set(p.glob("FILEa*")), set())
def test_rglob(self):
P = self.cls
@@ -1633,6 +1634,7 @@ class PosixPathTest(_BasePathTest, unittest.TestCase):
given = set(p.rglob("FILEd"))
expect = set() if not support.fs_is_case_insensitive(BASE) else given
self.assertEqual(given, expect)
+ self.assertEqual(set(p.rglob("FILEd*")), set())
@only_nt