Skip to content

Commit f5270f4

Browse files
committed
[Test] Fix syntax error in test slurm scaling.
1 parent 1c52374 commit f5270f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration-tests/tests/schedulers/test_slurm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,7 @@ def _test_replace_down_nodes(
11981198
_set_nodes_to_down_manually(scheduler_commands, dynamic_nodes)
11991199
# TOFIX We observe in 3.13.0 an increase in the bootstrap time for Rocky and RHEL.
12001200
# We must address it and restore the default wait time to 300s.
1201-
stop_max_delay_secs = 360 if os.starts_with("rocky") else 300
1201+
stop_max_delay_secs = 360 if os.startswith("rocky") else 300
12021202
_wait_for_node_reset(scheduler_commands, static_nodes, dynamic_nodes, stop_max_delay_secs=stop_max_delay_secs)
12031203
assert_num_instances_in_cluster(cluster_name, region, len(static_nodes))
12041204

0 commit comments

Comments
 (0)