From 35dbacf085a7ae3d7965b05254d7aa16cbe91ef3 Mon Sep 17 00:00:00 2001 From: Carl Buchholz <32228189+aGuyLearning@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:29:57 +0100 Subject: [PATCH] updated test to use keywords --- tests/tools/test_sa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tools/test_sa.py b/tests/tools/test_sa.py index 48d85b36..e2bfec29 100644 --- a/tests/tools/test_sa.py +++ b/tests/tools/test_sa.py @@ -92,7 +92,7 @@ def _sa_function_assert(self, model, model_class): def _sa_func_test(self, sa_function, sa_class, mimic_2_sa): adata, duration_col, event_col = mimic_2_sa - sa = sa_function(adata, duration_col, event_col) + sa = sa_function(adata, duration_col=duration_col, event_col=event_col) self._sa_function_assert(sa, sa_class) def test_kmf(self, mimic_2_sa):