File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 30
30
from smartsim import Experiment
31
31
from smartsim .database import Orchestrator
32
32
from smartsim .error import SSUnsupportedError
33
- from smartsim .settings import PalsMpiexecSettings , RunSettings
33
+ from smartsim .settings import DragonRunSettings , RunSettings
34
34
from smartsim .status import SmartSimStatus
35
35
36
36
# The tests in this file belong to the group_a group
40
40
def test_unsupported_run_settings (test_dir ):
41
41
exp_name = "test-unsupported-run-settings"
42
42
exp = Experiment (exp_name , launcher = "slurm" , exp_path = test_dir )
43
- bad_settings = PalsMpiexecSettings ("echo" , "hello" )
43
+ bad_settings = DragonRunSettings ("echo" , "hello" )
44
44
model = exp .create_model ("bad_rs" , bad_settings )
45
45
46
46
with pytest .raises (SSUnsupportedError ):
You can’t perform that action at this time.
0 commit comments