diff options
Diffstat (limited to 'tests/test_vba.py')
-rw-r--r-- | tests/test_vba.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_vba.py b/tests/test_vba.py index d11108d..1d185fa 100644 --- a/tests/test_vba.py +++ b/tests/test_vba.py @@ -31,14 +31,14 @@ def bootstrap(): is constructed by this function. """ - cry = vba.crystal() + cry = vba.crystal(config=None) runner = autoplayer.SpeedRunner(cry=cry) # skip=False means run the skip_intro function instead of just skipping to # a saved state. runner.skip_intro() - state = cry.get_state() + state = cry.vba.state # clean everything up again cry.vba.shutdown() |