use the state property during test bootstrapping

This commit is contained in:
Bryan Bishop
2013-09-22 01:02:56 -05:00
parent 8e0a4f9229
commit 2614df2587

View File

@@ -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()