From 2ac11d1388ae5f4254cf8dd9b0c1101e2e5cb780 Mon Sep 17 00:00:00 2001 From: Christoph Toennis Date: Tue, 16 Jul 2024 16:35:20 +0200 Subject: [PATCH] I fixed an issue with the tests --- src/ctapipe/image/tests/test_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctapipe/image/tests/test_extractor.py b/src/ctapipe/image/tests/test_extractor.py index 73cf0e3f8f8..610dc12f7e2 100644 --- a/src/ctapipe/image/tests/test_extractor.py +++ b/src/ctapipe/image/tests/test_extractor.py @@ -718,7 +718,7 @@ def test_dtype(Extractor, subarray): n_channels, n_pixels, _ = waveforms.shape broken_pixels = np.zeros((n_channels, n_pixels), dtype=bool) if Extractor is VarianceExtractor: - var = extractor(waveforms, tel_id, 0.0) + var = extractor(waveforms, tel_id, None, None) assert var.image.dtype == np.float32 return