From 86d48645a468a857596d95be6ce7ae8fea76a49e Mon Sep 17 00:00:00 2001 From: Erik Bernhardsson Date: Tue, 31 Mar 2020 11:50:36 -0400 Subject: [PATCH] fix test --- test_convoys.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test_convoys.py b/test_convoys.py index 975f857..5d831fb 100644 --- a/test_convoys.py +++ b/test_convoys.py @@ -86,10 +86,6 @@ def test_output_shapes(c=0.3, lambd=0.1, n=1000, k=5): assert model.predict_ci([[X[0]], [X[1]]], [[0, 1, 2]], ci=0.8) \ .shape == (2, 3, 3) - # Assert old interface still works - assert model.cdf(X[0], 0).shape == () - assert model.cdf(X[0], 0, ci=0.8).shape == (3,) - # Fit model without ci (should be the same) model = convoys.regression.Exponential(ci=False) model.fit(X, B, T)