Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Script config admin panel #239

Merged
merged 6 commits into from
Nov 1, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#127 fixed another flickering test
bugy committed Nov 1, 2019
commit ccebaf9b48f5e8a991d73fdf25bf12cc584d9afd
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({