diff --git a/tests/test_0013_rntuple_anchor.py b/tests/test_0013_rntuple_anchor.py index 1fc278edf..980d2721e 100644 --- a/tests/test_0013_rntuple_anchor.py +++ b/tests/test_0013_rntuple_anchor.py @@ -11,7 +11,7 @@ def test(): - filename = skhep_testdata.data_path("ntpl001_staff_rntuple_v1.root") + filename = skhep_testdata.data_path("ntpl001_staff_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: obj = f["Staff"] assert obj.member("fVersionEpoch") == 1 diff --git a/tests/test_0630_rntuple_basics.py b/tests/test_0630_rntuple_basics.py index d1a5a28bc..88d96a9bc 100644 --- a/tests/test_0630_rntuple_basics.py +++ b/tests/test_0630_rntuple_basics.py @@ -14,7 +14,7 @@ def test_flat(): - filename = skhep_testdata.data_path("test_int_float_rntuple_v1.root") + filename = skhep_testdata.data_path("test_int_float_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: R = f["ntuple"] assert R.keys() == ["one_integers", "two_floats"] @@ -32,7 +32,7 @@ def test_flat(): R.arrays(entry_start=1, entry_stop=3)["one_integers"] == numpy.array([8, 7]) ) - filename = skhep_testdata.data_path("test_int_5e4_rntuple_v1.root") + filename = skhep_testdata.data_path("test_int_5e4_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: R = f["ntuple"] assert all( @@ -42,7 +42,9 @@ def test_flat(): def test_jagged(): - filename = skhep_testdata.data_path("test_int_vfloat_tlv_vtlv_rntuple_v1.root") + filename = skhep_testdata.data_path( + "test_int_vfloat_tlv_vtlv_rntuple_v1-0-0-0.root" + ) with uproot.open(filename) as f: R = f["ntuple"] assert R.keys() == ["one_integers", "two_v_floats", "three_LV", "four_v_LVs"] diff --git a/tests/test_0662_rntuple_stl_containers.py b/tests/test_0662_rntuple_stl_containers.py index 90c1d5628..32ace7d11 100644 --- a/tests/test_0662_rntuple_stl_containers.py +++ b/tests/test_0662_rntuple_stl_containers.py @@ -14,7 +14,7 @@ def test_rntuple_stl_containers(): - filename = skhep_testdata.data_path("test_stl_containers_rntuple_v1.root") + filename = skhep_testdata.data_path("test_stl_containers_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: R = f["ntuple"] assert R.keys() == [ diff --git a/tests/test_0962_rntuple_update.py b/tests/test_0962_rntuple_update.py index 9fec346cf..b81a612c2 100644 --- a/tests/test_0962_rntuple_update.py +++ b/tests/test_0962_rntuple_update.py @@ -8,7 +8,9 @@ def test_new_support_RNTuple_split_int32_reading(): - with uproot.open(skhep_testdata.data_path("test_int_5e4_rntuple_v1.root")) as f: + with uproot.open( + skhep_testdata.data_path("test_int_5e4_rntuple_v1-0-0-0.root") + ) as f: obj = f["ntuple"] df = obj.arrays() assert len(df) == 5e4 @@ -17,7 +19,7 @@ def test_new_support_RNTuple_split_int32_reading(): def test_new_support_RNTuple_bit_bool_reading(): - with uproot.open(skhep_testdata.data_path("test_bit_rntuple_v1.root")) as f: + with uproot.open(skhep_testdata.data_path("test_bit_rntuple_v1-0-0-0.root")) as f: obj = f["ntuple"] df = obj.arrays() assert np.all(df.one_bit == np.asarray([1, 0, 0, 1, 0, 0, 1, 0, 0, 1])) @@ -25,7 +27,7 @@ def test_new_support_RNTuple_bit_bool_reading(): def test_new_support_RNTuple_split_int16_reading(): with uproot.open( - skhep_testdata.data_path("test_int_multicluster_rntuple_v1.root") + skhep_testdata.data_path("test_int_multicluster_rntuple_v1-0-0-0.root") ) as f: obj = f["ntuple"] df = obj.arrays() diff --git a/tests/test_1191_rntuple_fixes.py b/tests/test_1191_rntuple_fixes.py index ef4c7ee3e..af403629a 100644 --- a/tests/test_1191_rntuple_fixes.py +++ b/tests/test_1191_rntuple_fixes.py @@ -7,7 +7,7 @@ def test_schema_extension(): - filename = skhep_testdata.data_path("test_extension_columns_rntuple_v1.root") + filename = skhep_testdata.data_path("test_extension_columns_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: obj = f["ntuple"] @@ -34,7 +34,7 @@ def test_schema_extension(): def test_rntuple_cardinality(): filename = skhep_testdata.data_path( - "Run2012BC_DoubleMuParked_Muons_1000evts_rntuple_v1.root" + "Run2012BC_DoubleMuParked_Muons_1000evts_rntuple_v1-0-0-0.root" ) with uproot.open(filename) as f: obj = f["Events"] @@ -43,7 +43,7 @@ def test_rntuple_cardinality(): def test_multiple_page_delta_encoding(): - filename = skhep_testdata.data_path("test_index_multicluster_rntuple_v1.root") + filename = skhep_testdata.data_path("test_index_multicluster_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: obj = f["ntuple"] data = obj.read_col_page(0, 0) @@ -53,7 +53,7 @@ def test_multiple_page_delta_encoding(): def test_split_encoding(): filename = skhep_testdata.data_path( - "Run2012BC_DoubleMuParked_Muons_1000evts_rntuple_v1.root" + "Run2012BC_DoubleMuParked_Muons_1000evts_rntuple_v1-0-0-0.root" ) with uproot.open(filename) as f: obj = f["Events"] diff --git a/tests/test_1223_more_rntuple_types.py b/tests/test_1223_more_rntuple_types.py index 6147a3830..ea2a986ae 100644 --- a/tests/test_1223_more_rntuple_types.py +++ b/tests/test_1223_more_rntuple_types.py @@ -6,7 +6,7 @@ def test_atomic(): - filename = skhep_testdata.data_path("test_atomic_bitset_rntuple_v1.root") + filename = skhep_testdata.data_path("test_atomic_bitset_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: obj = f["ntuple"] @@ -16,7 +16,7 @@ def test_atomic(): def test_bitset(): - filename = skhep_testdata.data_path("test_atomic_bitset_rntuple_v1.root") + filename = skhep_testdata.data_path("test_atomic_bitset_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: obj = f["ntuple"] @@ -67,7 +67,9 @@ def test_bitset(): def test_empty_struct(): - filename = skhep_testdata.data_path("test_emptystruct_invalidvar_rntuple_v1.root") + filename = skhep_testdata.data_path( + "test_emptystruct_invalidvar_rntuple_v1-0-0-0.root" + ) with uproot.open(filename) as f: obj = f["ntuple"] @@ -77,7 +79,9 @@ def test_empty_struct(): def test_invalid_variant(): - filename = skhep_testdata.data_path("test_emptystruct_invalidvar_rntuple_v1.root") + filename = skhep_testdata.data_path( + "test_emptystruct_invalidvar_rntuple_v1-0-0-0.root" + ) with uproot.open(filename) as f: obj = f["ntuple"] diff --git a/tests/test_1250_rntuple_improvements.py b/tests/test_1250_rntuple_improvements.py index 80ed96216..32d39c6ea 100644 --- a/tests/test_1250_rntuple_improvements.py +++ b/tests/test_1250_rntuple_improvements.py @@ -7,7 +7,7 @@ def test_field_class(): - filename = skhep_testdata.data_path("test_nested_structs_rntuple_v1.root") + filename = skhep_testdata.data_path("test_nested_structs_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: obj = f["ntuple"] my_struct = obj["my_struct"] @@ -25,7 +25,7 @@ def test_field_class(): def test_array_methods(): filename = skhep_testdata.data_path( - "Run2012BC_DoubleMuParked_Muons_1000evts_rntuple_v1.root" + "Run2012BC_DoubleMuParked_Muons_1000evts_rntuple_v1-0-0-0.root" ) with uproot.open(filename) as f: obj = f["Events"] @@ -41,7 +41,7 @@ def test_array_methods(): def test_iterate(): filename = skhep_testdata.data_path( - "Run2012BC_DoubleMuParked_Muons_1000evts_rntuple_v1.root" + "Run2012BC_DoubleMuParked_Muons_1000evts_rntuple_v1-0-0-0.root" ) with uproot.open(filename) as f: obj = f["Events"] diff --git a/tests/test_1285_rntuple_multicluster_concatenation.py b/tests/test_1285_rntuple_multicluster_concatenation.py index e578c2870..fae322e96 100644 --- a/tests/test_1285_rntuple_multicluster_concatenation.py +++ b/tests/test_1285_rntuple_multicluster_concatenation.py @@ -7,7 +7,7 @@ def test_schema_extension(): - filename = skhep_testdata.data_path("test_index_multicluster_rntuple_v1.root") + filename = skhep_testdata.data_path("test_index_multicluster_rntuple_v1-0-0-0.root") with uproot.open(filename) as f: obj = f["ntuple"]