1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2025-12-20 04:48:02 +01:00

Fixed occasionally failing tests caused by the wrong list order

This commit is contained in:
2016-12-27 20:24:18 +01:00
parent 11202903d5
commit 988784dbf3

View File

@@ -97,5 +97,5 @@ class TestCmdOptions(TestCase):
cmd.add('--fast_memory=4096') cmd.add('--fast_memory=4096')
self.assertDictEqual(cmd, {'fullscreen': '1', 'fast_memory': '4096'}) self.assertDictEqual(cmd, {'fullscreen': '1', 'fast_memory': '4096'})
self.assertListEqual(cmd.list(), self.assertListEqual(sorted(cmd.list()),
['--fullscreen', '--fast_memory=4096']) ['--fast_memory=4096', '--fullscreen'])