diff --git a/src/tests/unit/cpu/test_ibldsp.py b/src/tests/unit/cpu/test_ibldsp.py index 40dfc96..a8214c9 100644 --- a/src/tests/unit/cpu/test_ibldsp.py +++ b/src/tests/unit/cpu/test_ibldsp.py @@ -632,7 +632,7 @@ class TestNameDeprecationDate(unittest.TestCase): def test_neurodsp_import(self): # Check that the old import still works and gives the same package. # (ibldsp.voltage is imported at the top of this file.) - with self.assertWarnsRegex(FutureWarning, "01-Sep-2024"): + with self.assertWarnsRegex(FutureWarning, "01-Oct-2024"): import neurodsp self.assertEqual(neurodsp.voltage, voltage) @@ -643,7 +643,7 @@ def test_deprecation_countdown(self): # repository import datetime - if datetime.datetime.now() > datetime.datetime(2024, 9, 1): + if datetime.datetime.now() > datetime.datetime(2024, 10, 1): raise NotImplementedError( "neurodsp will not longer be supported. " "Change all references to ibldsp."