Skip to content

Commit 22741a4

Browse files
committed
Fix test
1 parent 74f93f3 commit 22741a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_launch_errors.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from smartsim import Experiment
3131
from smartsim.database import Orchestrator
3232
from smartsim.error import SSUnsupportedError
33-
from smartsim.settings import PalsMpiexecSettings, RunSettings
33+
from smartsim.settings import DragonRunSettings, RunSettings
3434
from smartsim.status import SmartSimStatus
3535

3636
# The tests in this file belong to the group_a group
@@ -40,7 +40,7 @@
4040
def test_unsupported_run_settings(test_dir):
4141
exp_name = "test-unsupported-run-settings"
4242
exp = Experiment(exp_name, launcher="slurm", exp_path=test_dir)
43-
bad_settings = PalsMpiexecSettings("echo", "hello")
43+
bad_settings = DragonRunSettings("echo", "hello")
4444
model = exp.create_model("bad_rs", bad_settings)
4545

4646
with pytest.raises(SSUnsupportedError):

0 commit comments

Comments
 (0)