diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-01-17 23:51:27 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2018-01-17 23:51:27 (GMT) |
commit | 8d1e41d4148a69b0709fc7fb6bb733451ae1b28d (patch) | |
tree | 542515e59736ca3a61b94078000def226fdada49 | |
parent | 4e09c0c8589f9152646f2cf403136dc783bcea4c (diff) | |
download | cpython-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.py | 6 |
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): |