From 138046119622a2e33c653a55744f0002ec741b23 Mon Sep 17 00:00:00 2001 From: elaubsch Date: Tue, 1 Feb 2022 15:17:13 -0800 Subject: [PATCH] Fix bug in tests --- deepcell_spots/applications/polaris_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepcell_spots/applications/polaris_test.py b/deepcell_spots/applications/polaris_test.py index 57bdfd6..dcc239b 100644 --- a/deepcell_spots/applications/polaris_test.py +++ b/deepcell_spots/applications/polaris_test.py @@ -86,7 +86,7 @@ def test_polaris_app(self): _ = app.predict(spots_image=spots_image, spots_threshold=-1.1) # test segmentation app error - app = Polaris(segmentation_compartment='None') + app = Polaris(segmentation_compartment='no segmentation') spots_image = np.random.rand(1, 128, 128, 1) segmentation_image = np.random.rand(1, 128, 128, 1) with self.assertRaises(ValueError):