Split to make it obvious run is called

This commit is contained in:
Michael Miller 2021-05-16 12:22:00 -06:00
parent 59c67c26a9
commit 832ffbf403
No known key found for this signature in database
GPG key ID: FB9F12F7C646A4AD

View file

@ -14,7 +14,8 @@ module Spectator
# Runs all selected examples and returns the results.
def run
Runner.new(examples, @config.formatter, @config.run_flags).run
runner = Runner.new(examples, @config.formatter, @config.run_flags)
runner.run
end
# Selects and shuffles the examples that should run.