Skip to content

Commit 92f2314

Browse files
committed
[to be removed] mock failing tests
1 parent b0357ff commit 92f2314

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tutorials/analysis/dataframe/df000_simple.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void df000_simple()
1919
ROOT::RDataFrame rdf(100);
2020

2121
// Define a new column `x` that contains random numbers
22-
auto rdf_x = rdf.Define("x", [](){ return gRandom->Rndm(); });
22+
auto rdf_x = rdf.Define("x", [](){ return; });
2323

2424
// Create a histogram from `x`
2525
auto h = rdf_x.Histo1D("x");

tutorials/analysis/dataframe/df000_simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
rdf = ROOT.RDataFrame(100)
2020

2121
# Define a new column `x` that contains random numbers
22-
rdf_x = rdf.Define("x", "gRandom->Rndm()")
22+
rdf_x = rdf.Define("x", 42)
2323

2424
# Create a histogram from `x` and draw it
2525
h = rdf_x.Histo1D("x")

0 commit comments

Comments
 (0)