|
28 | 28 | def test_init_prior(qtbot, storage):
|
29 | 29 | config = ErtConfig.from_file("poly.ert")
|
30 | 30 | config.random_seed = 1234
|
31 |
| - notifier = ErtNotifier(config.config_path) |
| 31 | + notifier = ErtNotifier() |
32 | 32 | notifier.set_storage(storage)
|
33 | 33 | ensemble = storage.create_experiment(
|
34 | 34 | parameters=config.ensemble_config.parameter_configuration,
|
@@ -62,7 +62,7 @@ def test_init_prior(qtbot, storage):
|
62 | 62 | @pytest.mark.usefixtures("copy_poly_case")
|
63 | 63 | def test_that_init_updates_the_info_tab(qtbot, storage):
|
64 | 64 | config = ErtConfig.from_file("poly.ert")
|
65 |
| - notifier = ErtNotifier(config.config_path) |
| 65 | + notifier = ErtNotifier() |
66 | 66 | notifier.set_storage(storage)
|
67 | 67 |
|
68 | 68 | ensemble = storage.create_experiment(
|
@@ -132,7 +132,7 @@ def test_experiment_view(
|
132 | 132 | config = snake_oil_case_storage
|
133 | 133 | storage = snake_oil_storage
|
134 | 134 |
|
135 |
| - notifier = ErtNotifier(config.config_path) |
| 135 | + notifier = ErtNotifier() |
136 | 136 | notifier.set_storage(storage)
|
137 | 137 |
|
138 | 138 | tool = ManageExperimentsPanel(
|
@@ -164,7 +164,7 @@ def test_ensemble_view(
|
164 | 164 | config = snake_oil_case_storage
|
165 | 165 | storage = snake_oil_storage
|
166 | 166 |
|
167 |
| - notifier = ErtNotifier(config.config_path) |
| 167 | + notifier = ErtNotifier() |
168 | 168 | notifier.set_storage(storage)
|
169 | 169 |
|
170 | 170 | tool = ManageExperimentsPanel(
|
@@ -303,7 +303,7 @@ def _evaluate(coeffs, x):
|
303 | 303 | prior_ens, _ = run_cli_ES_with_case("poly_localization_0.ert")
|
304 | 304 | config = ErtConfig.from_file("poly_localization_0.ert")
|
305 | 305 |
|
306 |
| - notifier = ErtNotifier(config.config_path) |
| 306 | + notifier = ErtNotifier() |
307 | 307 | with open_storage(config.ens_path, mode="w") as storage:
|
308 | 308 | notifier.set_storage(storage)
|
309 | 309 |
|
@@ -349,7 +349,7 @@ def _evaluate(coeffs, x):
|
349 | 349 | @pytest.mark.usefixtures("copy_poly_case")
|
350 | 350 | def test_ensemble_observations_view_on_empty_ensemble(qtbot):
|
351 | 351 | config = ErtConfig.from_file("poly.ert")
|
352 |
| - notifier = ErtNotifier(config.config_path) |
| 352 | + notifier = ErtNotifier() |
353 | 353 | with open_storage(config.ens_path, mode="w") as storage:
|
354 | 354 | notifier.set_storage(storage)
|
355 | 355 | storage.create_experiment(
|
@@ -413,7 +413,7 @@ def test_realization_view(
|
413 | 413 | config = snake_oil_case_storage
|
414 | 414 | storage = snake_oil_storage
|
415 | 415 |
|
416 |
| - notifier = ErtNotifier(config.config_path) |
| 416 | + notifier = ErtNotifier() |
417 | 417 | notifier.set_storage(storage)
|
418 | 418 |
|
419 | 419 | tool = ManageExperimentsPanel(
|
|
0 commit comments