diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-22 01:02:56 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-22 01:02:56 -0500 |
commit | 2614df2587f3ccd9ea3cdf9604c0025f5113507b (patch) | |
tree | 1eae2ee47e928ab4bbe163f295706ce28624b58b /tests | |
parent | 8e0a4f922906a118bc0a7bcc2e8680c6ba9060df (diff) |
use the state property during test bootstrapping
Diffstat (limited to 'tests')
-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() |