Skip to content

Commit

Permalink
#127 fixed flickering test
Browse files Browse the repository at this point in the history
bugy committed Nov 1, 2019
1 parent 6b30752 commit 368532a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tests/parameter_config_test.py
Original file line number Diff line number Diff line change
@@ -708,7 +708,10 @@ def test_get_sorted_when_unknown_fields(self):
('key1', 'abc'),
('key2', 123),
('key3', [])])
self.assertEqual(expected, config)

self.assertEqual(expected.popitem(last=False), config.popitem(last=False))
self.assertEqual(expected.popitem(last=False), config.popitem(last=False))
self.assertCountEqual(expected.items(), config.items())


def _create_parameter_model(config, *, username=DEF_USERNAME, audit_name=DEF_AUDIT_NAME, all_parameters=None):

0 comments on commit 368532a

Please sign in to comment.