Skip to content

Commit 914d022

Browse files
committed
Fix failing test
Fix a test failing due to the removal of compiler flags workarounds
1 parent 2ebaa9b commit 914d022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tree/dataframe/test/dataframe_interface.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ TEST(RDataFrameInterface, Describe)
641641

642642
// dataframe with various data types
643643
RDataFrame df2(tree);
644-
auto df3 = df2.Define("myVec", "ROOT::RVec<float>({1, 2, 3})")
644+
auto df3 = df2.Define("myVec", "::ROOT::RVec<float>({1, 2, 3})")
645645
.Define("myLongColumnName", "1u");
646646
df3.Sum("myInt").GetValue(); // trigger the event loop once
647647
const auto ref2 = "Dataframe from TTree tree (in-memory)\n"

0 commit comments

Comments
 (0)