Skip to content

Commit

Permalink
Merge e4ddc83 into 8dfc9ef
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlynch committed Apr 17, 2018
2 parents 8dfc9ef + e4ddc83 commit b9d7432
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_file_generator.py
Expand Up @@ -36,7 +36,7 @@ def test_generates_single_file(self):

self.generator.next_file()

self.assertEqual([
self.assertItemsEqual([
'dummy-prefix-00000000.testfile',
], os.listdir(self.test_dir))
self.assertFileSizesEqual(42)
Expand All @@ -50,7 +50,7 @@ def test_generates_three_files(self):
self.generator.next_file()
self.generator.next_file()

self.assertEqual([
self.assertItemsEqual([
'dummy-prefix-00000000.testfile',
'dummy-prefix-00000001.testfile',
'dummy-prefix-00000002.testfile',
Expand All @@ -64,7 +64,7 @@ def test_generates_large_file(self):

self.generator.next_file()

self.assertEqual([
self.assertItemsEqual([
'dummy-prefix-00000000.testfile',
], os.listdir(self.test_dir))
self.assertFileSizesEqual(10 * 1024 * 1024)
Expand Down

0 comments on commit b9d7432

Please sign in to comment.