Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
johnatawnclementawn committed Oct 2, 2024
1 parent beaf76e commit dd669ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/cli_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ def test_import_controlled_list(self):
stdout=output,
)

self.assertTrue(List.objects.all().count() == 2)
self.assertTrue(ListItem.objects.all().count() == 10)
self.assertTrue(ListItemValue.objects.all().count() == 21)
self.assertEqual(List.objects.all().count(), 2)
self.assertEqual(ListItem.objects.all().count(), 10)
self.assertEqual(ListItemValue.objects.all().count(), 21)

### TODO Add test for creating new language if language code not in db but found in import file

Expand Down

0 comments on commit dd669ae

Please sign in to comment.