Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
matyldv committed Feb 21, 2024
1 parent 7aae669 commit baa6b4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ralph/data_center/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,9 @@ def test_should_return_only_common_networks(self):
(str(common_net.pk), common_net)
]
expected_common_result = [(str(common_net.pk), common_net)]
self.assertEqual(rack_100_result, expected_rack100_result)
self.assertCountEqual(rack_100_result, expected_rack100_result)
self.assertEqual(len(rack_100_result), 2)
self.assertEqual(common_result, expected_common_result)
self.assertCountEqual(common_result, expected_common_result)
self.assertEqual(len(common_result), 1)


Expand Down

0 comments on commit baa6b4a

Please sign in to comment.