Skip to content

Commit

Permalink
Revert "Revert "Fix failing unit test""
Browse files Browse the repository at this point in the history
This reverts commit 70c3253.
  • Loading branch information
kyleknap committed Feb 13, 2015
1 parent 6e7f354 commit 9578a75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/test_topictags.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_get_all_topic_source_files(self):
topic_name = 'topic-name-' + str(i)
source_files.append(self.file_creator.create_file(topic_name, ''))

self.assertEqual(
self.assertCountEqual(
self.topic_tag_db.get_all_topic_src_files(),
source_files
)
Expand All @@ -73,7 +73,7 @@ def test_get_all_topic_source_files_ignore_index(self):
topic_dir = self.file_creator.rootdir
self.topic_tag_db = TopicTagDB(index_file=index_file,
topic_dir=topic_dir)
self.assertEqual(
self.assertCountEqual(
self.topic_tag_db.get_all_topic_src_files(),
source_files
)
Expand All @@ -86,7 +86,7 @@ def test_get_all_topic_source_files_ignore_hidden(self):
self.file_creator.create_file(hidden_filename, '')
topic_dir = self.file_creator.rootdir
self.topic_tag_db = TopicTagDB(topic_dir=topic_dir)
self.assertEqual(
self.assertCountEqual(
self.topic_tag_db.get_all_topic_src_files(),
source_files
)
Expand Down

0 comments on commit 9578a75

Please sign in to comment.