mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2025-12-19 04:20:23 +01:00
Fixed occasionally failing tests caused by the wrong list order
This commit is contained in:
@@ -97,5 +97,5 @@ class TestCmdOptions(TestCase):
|
||||
cmd.add('--fast_memory=4096')
|
||||
|
||||
self.assertDictEqual(cmd, {'fullscreen': '1', 'fast_memory': '4096'})
|
||||
self.assertListEqual(cmd.list(),
|
||||
['--fullscreen', '--fast_memory=4096'])
|
||||
self.assertListEqual(sorted(cmd.list()),
|
||||
['--fast_memory=4096', '--fullscreen'])
|
||||
|
||||
Reference in New Issue
Block a user