1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2026-01-04 21:04:19 +01:00

Fix user provided whdload options

This commit is contained in:
2024-09-14 17:00:28 +02:00
parent 7e3d68624f
commit 4c61c3d7ea
2 changed files with 3 additions and 3 deletions

View File

@@ -225,7 +225,7 @@ class TestWHDLoad(TestCase):
listdir.return_value = contents
wrapper = whdload.Wrapper('Config.fs-uae', utils.CmdOption(), {})
whdl_opts = 'Preload SplashDelay=0 MMU PAL'
wrapper.fsuae_options['wrapper_whdload_options'] = whdl_opts
wrapper.all_options['wrapper_whdload_options'] = whdl_opts
with mock.patch('builtins.open', _open):
self.assertTrue(wrapper._find_slave())
handle = _open()