File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ if(uring AND NOT DEFINED ENV{ROOTTEST_IGNORE_URING})
18
18
ROOT_ADD_GTEST(RIoUring RIoUring.cxx LIBRARIES RIO)
19
19
endif ()
20
20
21
- ROOT_ADD_GTEST(rfile rfile.cxx LIBRARIES RIO Hist ROOTNTuple )
21
+ ROOT_ADD_GTEST(rfile rfile.cxx LIBRARIES RIO Hist)
22
22
23
23
# Temporarily disabled. Test routinely fails on MacOS and some Linuxes.
24
24
#if(NOT WIN32 AND (NOT MACOS_VERSION OR NOT MACOSX_VERSION VERSION_LESS 13.00))
Original file line number Diff line number Diff line change 5
5
#include < TH1D.h>
6
6
#include < TROOT.h>
7
7
#include < ROOT/TestSupport.hxx>
8
- #include < ROOT/RNTuple.hxx>
9
8
#include < ROOT/RError.hxx>
10
9
#include < ROOT/RFile.hxx>
11
10
#include < ROOT/TestSupport.hxx>
@@ -335,11 +334,11 @@ TEST(RFile, RefuseToCreateDirOverLeaf)
335
334
#ifdef R__HAS_DAVIX
336
335
TEST (RFile, RemoteRead)
337
336
{
338
- constexpr const char *kFileName = " http ://root.cern/files/RNTuple .root" ;
339
-
337
+ constexpr const char *kFileName = " https ://root.cern/files/rootcode .root" ;
338
+
340
339
auto file = RFile::Open (kFileName );
341
- auto ntuple = file->Get <ROOT::RNTuple >(" Contributors " );
342
- ASSERT_NE (ntuple , nullptr );
340
+ auto content = file->Get <TDirectoryFile >(" root " );
341
+ ASSERT_NE (content , nullptr );
343
342
}
344
343
#endif
345
344
You can’t perform that action at this time.
0 commit comments