Skip to content

Commit

Permalink
pyk/tests/integration/proof/test_imp: update function argument names
Browse files Browse the repository at this point in the history
  • Loading branch information
ehildenb committed Nov 12, 2024
1 parent 1af260b commit ff1d21f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyk/src/tests/integration/proof/test_imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ def test_all_path_reachability_prove(
tmp_path_factory: TempPathFactory,
) -> None:
proof_dir = tmp_path_factory.mktemp(f'apr_tmp_proofs-{test_id}')
spec_modules = kprove.parse_modules(Path(spec_file), spec_module_name=spec_module)
spec_modules = kprove.parse_modules(Path(spec_file), module_name=spec_module)
spec_label = f'{spec_module}.{claim_id}'
proofs = APRProof.from_spec_modules(
kprove.definition,
Expand Down Expand Up @@ -930,7 +930,7 @@ def test_terminal_node_subsumption(
claim_id: str = 'terminal-node-subsumption'
cut_rules: Iterable[str] = []
proof_dir = tmp_path_factory.mktemp(f'apr_tmp_proofs-{test_id}')
spec_modules = kprove.parse_modules(Path(spec_file), spec_module_name=spec_module)
spec_modules = kprove.parse_modules(Path(spec_file), module_name=spec_module)
spec_label = f'{spec_module}.{claim_id}'
proofs = APRProof.from_spec_modules(
kprove.definition,
Expand Down Expand Up @@ -1441,7 +1441,7 @@ def test_all_path_reachability_prove_parallel(
create_prover: Callable[[int, Iterable[str]], Prover],
) -> None:
proof_dir = tmp_path_factory.mktemp(f'apr_tmp_proofs-{test_id}')
spec_modules = kprove.parse_modules(Path(spec_file), spec_module_name=spec_module)
spec_modules = kprove.parse_modules(Path(spec_file), module_name=spec_module)
spec_label = f'{spec_module}.{claim_id}'
proofs = APRProof.from_spec_modules(
kprove.definition,
Expand Down Expand Up @@ -1480,7 +1480,7 @@ def test_all_path_reachability_prove_parallel_resources(
claim_id = 'addition-1'

proof_dir = tmp_path_factory.mktemp(f'apr_tmp_proofs-{test_id}')
spec_modules = kprove.parse_modules(Path(spec_file), spec_module_name=spec_module)
spec_modules = kprove.parse_modules(Path(spec_file), module_name=spec_module)
spec_label = f'{spec_module}.{claim_id}'
proofs = APRProof.from_spec_modules(
kprove.definition,
Expand Down

0 comments on commit ff1d21f

Please sign in to comment.