We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f93f3 commit 22741a4Copy full SHA for 22741a4
tests/test_launch_errors.py
@@ -30,7 +30,7 @@
30
from smartsim import Experiment
31
from smartsim.database import Orchestrator
32
from smartsim.error import SSUnsupportedError
33
-from smartsim.settings import PalsMpiexecSettings, RunSettings
+from smartsim.settings import DragonRunSettings, RunSettings
34
from smartsim.status import SmartSimStatus
35
36
# The tests in this file belong to the group_a group
@@ -40,7 +40,7 @@
40
def test_unsupported_run_settings(test_dir):
41
exp_name = "test-unsupported-run-settings"
42
exp = Experiment(exp_name, launcher="slurm", exp_path=test_dir)
43
- bad_settings = PalsMpiexecSettings("echo", "hello")
+ bad_settings = DragonRunSettings("echo", "hello")
44
model = exp.create_model("bad_rs", bad_settings)
45
46
with pytest.raises(SSUnsupportedError):
0 commit comments