diff --git a/tests/test_0692_fsspec_reading.py b/tests/test_0692_fsspec_reading.py index 2bad9136f..6e1bb5c0c 100644 --- a/tests/test_0692_fsspec_reading.py +++ b/tests/test_0692_fsspec_reading.py @@ -392,6 +392,13 @@ def test_issue_1035(handler): @pytest.mark.network @pytest.mark.xrootd +@pytest.mark.parametrize( + "filename", + [ + {"root://eospublic.cern.ch//eos/root-eos/cms_opendata_2012_nanoaod/Run2012B_*.root": "Events"}, + "root://eospublic.cern.ch//eos/root-eos/cms_opendata_2012_nanoaod/Run2012B_*.root:Events", + ] +) @pytest.mark.parametrize( "handler", [ @@ -399,13 +406,11 @@ def test_issue_1035(handler): None, ], ) -def test_fsspec_globbing_xrootd(handler): +def test_fsspec_globbing_xrootd(handler, filename): pytest.importorskip("XRootD") pytest.importorskip("fsspec_xrootd") iterator = uproot.iterate( - { - "root://eospublic.cern.ch//eos/root-eos/cms_opendata_2012_nanoaod/Run2012B_*.root": "Events" - }, + filename, ["PV_x"], handler=handler, )