diff --git a/tests/everest/test_everlint.py b/tests/everest/test_everlint.py index 98b13435409..23ab4186633 100644 --- a/tests/everest/test_everlint.py +++ b/tests/everest/test_everlint.py @@ -156,7 +156,7 @@ def test_extra_key(min_config): ), ( {"environment": {"output_folder": "/path/with/" + chr(0) + "embeddedNULL"}}, - "output_folder\n.* embedded null byte", + "output_folder\n.* embedded null", ), ( {"environment": {"output_folder": ["some", "list"]}}, diff --git a/tests/everest/test_res_initialization.py b/tests/everest/test_res_initialization.py index fdf78935f76..3ea72597ce5 100644 --- a/tests/everest/test_res_initialization.py +++ b/tests/everest/test_res_initialization.py @@ -348,9 +348,9 @@ def test_workflow_job(tmp_path, monkeypatch): def test_workflows(tmp_path, monkeypatch): monkeypatch.chdir(tmp_path) - Path("test").write_text("EXECUTABLE echo", encoding="utf-8") - workflow_jobs = [{"name": "test", "source": "TEST"}] - workflow = {"pre_simulation": ["test"]} + Path("TEST").write_text("EXECUTABLE echo", encoding="utf-8") + workflow_jobs = [{"name": "my_test", "source": "TEST"}] + workflow = {"pre_simulation": ["my_test"]} ever_config = EverestConfig.with_defaults( **{ "workflows": workflow, @@ -360,7 +360,7 @@ def test_workflows(tmp_path, monkeypatch): ) ert_config = everest_to_ert_config(ever_config) jobs = ert_config.workflows.get("pre_simulation") - assert jobs.cmd_list[0][0].name == "test" + assert jobs.cmd_list[0][0].name == "my_test" assert jobs.cmd_list[0][0].executable == "echo"