@@ -25,14 +25,6 @@ TEST_CASE("InputFileCatalog with Rucio data catalog", "[FWCore/Catalog]") {
2525
2626 edm::InputFileCatalog catalog (std::vector<std::string>{" /store/foo/bar" , " file:/foo/bar" , " root://foobar " }, " " );
2727
28- SECTION (" logicalFileNames" ) {
29- auto const & lfns = catalog.logicalFileNames ();
30- REQUIRE (lfns.size () == 3 );
31- CHECK (lfns[0 ] == " /store/foo/bar" );
32- CHECK (lfns[1 ] == " " ); // was PFN
33- CHECK (lfns[2 ] == " " ); // was PFN
34- }
35-
3628 SECTION (" fileNames" ) {
3729 SECTION (" Catalog 0" ) {
3830 auto const names = catalog.fileNames (0 );
@@ -76,14 +68,6 @@ TEST_CASE("InputFileCatalog with Rucio data catalog", "[FWCore/Catalog]") {
7668 edm::InputFileCatalog catalog (std::vector<std::string>{" /store/foo/bar" , " file:/foo/bar" , " root://foobar " },
7769 " T1_US_FNAL,,T1_US_FNAL,FNAL_dCache_EOS,XRootD" );
7870
79- SECTION (" logicalFileNames" ) {
80- auto const & lfns = catalog.logicalFileNames ();
81- REQUIRE (lfns.size () == 3 );
82- CHECK (lfns[0 ] == " /store/foo/bar" );
83- CHECK (lfns[1 ] == " " ); // was PFN
84- CHECK (lfns[2 ] == " " ); // was PFN
85- }
86-
8771 SECTION (" fileNames" ) {
8872 auto const names = catalog.fileNames (0 );
8973 REQUIRE (names.size () == 3 );
@@ -116,14 +100,6 @@ TEST_CASE("InputFileCatalog with Rucio data catalog", "[FWCore/Catalog]") {
116100 edm::InputFileCatalog catalog (
117101 std::vector<std::string>{" /store/foo/bar" , " /tmp/foo/bar" , " root://foobar " }, " " , true );
118102
119- SECTION (" logicalFileNames" ) {
120- auto const & lfns = catalog.logicalFileNames ();
121- REQUIRE (lfns.size () == 3 );
122- CHECK (lfns[0 ] == " /store/foo/bar" );
123- CHECK (lfns[1 ] == " /tmp/foo/bar" );
124- CHECK (lfns[2 ] == " " ); // was PFN
125- }
126-
127103 SECTION (" fileNames" ) {
128104 SECTION (" Catalog 0" ) {
129105 auto const names = catalog.fileNames (0 );
0 commit comments