Browse Source

fix KSP test model fixture scope

refactoring
Tom Janson 8 years ago
parent
commit
b85f6ae1da
  1. 4
      tests/utility/test_shortestpaths.py

4
tests/utility/test_shortestpaths.py

@ -7,8 +7,8 @@ from helpers.helper import get_example_path
import pytest import pytest
@pytest.fixture
def test_model(scope="module", program_path=get_example_path("dtmc", "die.pm"), raw_formula="P=? [ F \"one\" ]"):
@pytest.fixture(scope="module")
def test_model(program_path=get_example_path("dtmc", "die.pm"), raw_formula="P=? [ F \"one\" ]"):
program = stormpy.parse_prism_program(program_path) program = stormpy.parse_prism_program(program_path)
formulas = stormpy.parse_formulas_for_prism_program(raw_formula, program) formulas = stormpy.parse_formulas_for_prism_program(raw_formula, program)
test_model = stormpy.build_model(program, formulas[0]) test_model = stormpy.build_model(program, formulas[0])

Loading…
Cancel
Save