Skip to content

Commit 20fcfa6

Browse files
test fix
1 parent 12812f6 commit 20fcfa6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/CLI/help/test_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_update_caller() -> None:
1515

1616
def test_update_caller_file_path() -> None:
1717
"""Test _update_caller_file_path uses the right file name and creates it."""
18-
timestamp = "18-08-2023_12:34:56"
18+
timestamp = "18-08-2023_12.34.56"
1919
sl._update_caller_file_path(timestamp)
2020

2121
assert isinstance(sl.caller_out_dir, Path)

tests/configurator/test_configurator_IRACE.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_irace_configure(mock_add_to_queue: Mock) -> None:
6969
cmd=cmds,
7070
output_path=outputs,
7171
parallel_jobs=None,
72-
name=f"{IRACE.__name__}: {conf_scenario.solver.name} on "
72+
name=f"{IRACE.__name__} {conf_scenario.solver.name} on "
7373
f"{conf_scenario.instance_set.name}",
7474
sbatch_options=[],
7575
prepend=None,

tests/configurator/test_configurator_SMAC2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_smac2_configure(
7474
runner=rrr.Runner.SLURM,
7575
base_dir=self.base_dir,
7676
cmd=expected_cmds,
77-
name=f"{SMAC2.__name__}: {self.conf_scenario.solver.name} on "
77+
name=f"{SMAC2.__name__} {self.conf_scenario.solver.name} on "
7878
f"{self.conf_scenario.instance_set.name}",
7979
output_path=expected_outputs,
8080
parallel_jobs=None,

0 commit comments

Comments
 (0)