Skip to content

Commit 6eb9008

Browse files
committed
Changed to run flowcharts using seamm_exec
1 parent 1e26d8f commit 6eb9008

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_flowcharts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""Tests for `table_step` running full flowcharts."""
55
from pathlib import Path
66
import pytest
7-
from seamm import run_flowchart
7+
from seamm_exec import run
88

99
test_dir = Path(__file__).resolve().parent
1010

@@ -25,4 +25,4 @@ def test_flowchart(monkeypatch, tmp_path, flowchart):
2525
],
2626
)
2727

28-
run_flowchart(wdir=str(tmp_path))
28+
run(wdir=str(tmp_path))

0 commit comments

Comments
 (0)