From 98321eacf98cdcbf72d2840fa6035648255ada2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Eide?= Date: Thu, 12 May 2022 09:02:45 +0200 Subject: [PATCH] Dont check the formatting of the ert log This is still probably testing to much, but will leave it here now. Should this happen again in the future it is probably safe to just remove the checks on the log. --- tests/jobs/csv_export2/test_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/jobs/csv_export2/test_integration.py b/tests/jobs/csv_export2/test_integration.py index 0ad896763..5ffcb2a7f 100644 --- a/tests/jobs/csv_export2/test_integration.py +++ b/tests/jobs/csv_export2/test_integration.py @@ -267,7 +267,7 @@ def test_ert_integration_errors(norne_mocked_ensembleset, snapshot): break with open(log_file) as fin: ertlog = fin.read() - assert "fmu.ensemble.realization - WARNING - No STATUS file" in ertlog + assert "No STATUS file" in ertlog assert "realization-2/iter-0" in ertlog assert os.path.exists("data.csv")