Skip to content

Commit f080e6f

Browse files
committed
[test] 3x shorter test w/o loosing coverage
1 parent 26492a2 commit f080e6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

math/mathcore/test/testGradient.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ struct Model1D : public Model<T> {
125125
delete oldTH1;
126126

127127
// Create TH1 and fill it with values from model function
128-
fNumPoints = 12801;
128+
fNumPoints = 6801;
129129
//fNumPoints = 11;
130130
fHistogram = new TH1D(nameTH1.c_str(), "Test random numbers", fNumPoints, 100, 200);
131131
gRandom->SetSeed(1);
@@ -187,7 +187,7 @@ struct Model2D : public Model<T> {
187187
delete oldTH2;
188188

189189
// Create TH1 and fill it with values from model function
190-
fNumPoints = 801;
190+
fNumPoints = 201;
191191
fHistogram = new TH2D(nameTH2.c_str(), "Test random numbers", fNumPoints, -5, 5, fNumPoints, -5, 5);
192192
gRandom->SetSeed(1);
193193
fHistogram->FillRandom(nameTF2.c_str(), 1000);

0 commit comments

Comments
 (0)