summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-01-17 23:51:27 (GMT)
committerGregory P. Smith <greg@krypto.org>2018-01-17 23:51:27 (GMT)
commit8d1e41d4148a69b0709fc7fb6bb733451ae1b28d (patch)
tree542515e59736ca3a61b94078000def226fdada49
parent4e09c0c8589f9152646f2cf403136dc783bcea4c (diff)
downloadcpython-8d1e41d4148a69b0709fc7fb6bb733451ae1b28d.zip
cpython-8d1e41d4148a69b0709fc7fb6bb733451ae1b28d.tar.gz
cpython-8d1e41d4148a69b0709fc7fb6bb733451ae1b28d.tar.bz2
Use assertCountEqual instead of assertEqual. (GH-5223) (#5225)
This test doesn't care about order, the underlying filesystem APIs do not guarantee directory listings on subsequent calls will be in the same order. (cherry picked from commit 3941499d6c2a4d09f2ea476f84b9c4ddc4bdefa0)
-rw-r--r--Lib/test/test_glob.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_glob.py b/Lib/test/test_glob.py
index dce64f9..767bd37 100644
--- a/Lib/test/test_glob.py
+++ b/Lib/test/test_glob.py
@@ -49,10 +49,10 @@ class GlobTests(unittest.TestCase):
pattern = os.path.join(*parts)
p = os.path.join(self.tempdir, pattern)
res = glob.glob(p, **kwargs)
- self.assertEqual(list(glob.iglob(p, **kwargs)), res)
+ self.assertCountEqual(glob.iglob(p, **kwargs), res)
bres = [os.fsencode(x) for x in res]
- self.assertEqual(glob.glob(os.fsencode(p), **kwargs), bres)
- self.assertEqual(list(glob.iglob(os.fsencode(p), **kwargs)), bres)
+ self.assertCountEqual(glob.glob(os.fsencode(p), **kwargs), bres)
+ self.assertCountEqual(glob.iglob(os.fsencode(p), **kwargs), bres)
return res
def assertSequencesEqual_noorder(self, l1, l2):