Skip to content

Commit 0a816a3

Browse files
committed
Fixed test
1 parent ee62aa0 commit 0a816a3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/surrogate_tests/test_causal_surrogate_assisted.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,9 @@ def test_causal_surrogate_assisted_execution_incorrect_search_config(self):
205205

206206
c_s_a_test_case = CausalSurrogateAssistedTestCase(specification, search_algorithm, simulator)
207207

208-
self.assertRaises(ValueError, c_s_a_test_case.execute(ObservationalDataCollector(scenario, df),
209-
custom_data_aggregator=data_double_aggregator))
208+
self.assertRaises(ValueError, c_s_a_test_case.execute,
209+
data_collector=ObservationalDataCollector(scenario, df),
210+
custom_data_aggregator=data_double_aggregator)
210211

211212
def tearDown(self) -> None:
212213
remove_temp_dir_if_existent()

0 commit comments

Comments
 (0)