From 82b74c2730a84bc0671647d2ba843b4f0e999558 Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Wed, 6 Nov 2024 18:01:21 -0800 Subject: [PATCH] Remove broken test --- tests/unit/test_fsspec_streaming.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/unit/test_fsspec_streaming.py b/tests/unit/test_fsspec_streaming.py index 1864f4a3..ca80bb72 100644 --- a/tests/unit/test_fsspec_streaming.py +++ b/tests/unit/test_fsspec_streaming.py @@ -52,8 +52,3 @@ def test_fsspec_streaming_via_read_nwb(self): nwbfile = NWBZarrIO.read_nwb(self.s3_aind_path) self.assertEqual(nwbfile.identifier, "ecephys_625749_2022-08-03_15-15-06") self.assertEqual(nwbfile.institution, "AIND") - - # Try a https:// URL as well - nwbfile = NWBZarrIO.read_nwb(self.https_s3_path) - self.assertIsNotNone(nwbfile) -