Skip to content

Commit

Permalink
pylint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Feb 24, 2021
1 parent 823d3c6 commit ce11f71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/collections/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def test_seed_children_task(self):
self.assertEqual(collection_v1.concepts.count(), 0)
self.assertEqual(collection_v1.mappings.count(), 0)

seed_children('collection', collection_v1.id)
seed_children('collection', collection_v1.id) # pylint: disable=no-value-for-parameter

self.assertEqual(collection_v1.references.count(), 2)
self.assertEqual(collection_v1.concepts.count(), 1)
Expand Down
2 changes: 1 addition & 1 deletion core/sources/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def test_seed_children_task(self):
self.assertEqual(source_v1.concepts.count(), 0)
self.assertEqual(source_v1.mappings.count(), 0)

seed_children('source', source_v1.id)
seed_children('source', source_v1.id) # pylint: disable=no-value-for-parameter

self.assertEqual(source_v1.concepts.count(), 1)
self.assertEqual(source_v1.mappings.count(), 1)

0 comments on commit ce11f71

Please sign in to comment.