Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo existant -> existent #8701

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/unit_tests/config/test_ert_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ def test_num_cpu_vs_torque_queue_cpu_configuration(


@pytest.mark.usefixtures("use_tmpdir")
def test_that_non_existant_job_directory_gives_config_validation_error():
def test_that_non_existent_job_directory_gives_config_validation_error():
test_config_file_base = "test"
test_config_file_name = f"{test_config_file_base}.ert"
test_config_contents = dedent(
Expand Down Expand Up @@ -758,7 +758,7 @@ def test_that_recursive_define_warns_when_reached_max_iterations():


@pytest.mark.usefixtures("use_tmpdir")
def test_that_loading_non_existant_workflow_gives_validation_error():
def test_that_loading_non_existent_workflow_gives_validation_error():
test_config_file_base = "test"
test_config_file_name = f"{test_config_file_base}.ert"
test_config_contents = dedent(
Expand All @@ -777,7 +777,7 @@ def test_that_loading_non_existant_workflow_gives_validation_error():


@pytest.mark.usefixtures("use_tmpdir")
def test_that_loading_non_existant_workflow_job_gives_validation_error():
def test_that_loading_non_existent_workflow_job_gives_validation_error():
test_config_file_base = "test"
test_config_file_name = f"{test_config_file_base}.ert"
test_config_contents = dedent(
Expand Down