Skip to content

Commit

Permalink
#127 fixed another flickering test
Browse files Browse the repository at this point in the history
  • Loading branch information
bugy committed Nov 1, 2019
1 parent dbb7a5b commit ccebaf9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tests/script_config_test.py
Original file line number Diff line number Diff line change
@@ -783,7 +783,9 @@ def test_get_sorted_when_unknown_fields(self):
('key2', 123),
('parameters', []),
])
self.assertEqual(expected, config)
self.assertEqual(expected.popitem(False), config.popitem(False))
self.assertEqual(expected.popitem(False), config.popitem(False))
self.assertCountEqual(expected.items(), config.items())

def test_get_sorted_with_parameters(self):
config = get_sorted_config({

0 comments on commit ccebaf9

Please sign in to comment.