Skip to content

Commit e2d0193

Browse files
author
Rob
committed
fixed minor issues
1 parent 2b94bcf commit e2d0193

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/tests/TestPeakWidthModel.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ class TestPeakWidthModel : public CxxTest::TestSuite
8888
mcjepw->setDelta1(0.1);
8989
mcjepw->setDelta2(0.2);
9090
mcjepw->setQbroad(0.3);
91-
mcjepw->setQbroad_new(0.003);
91+
mcjepw->setQbroad_new(0.4);
9292
TS_ASSERT_EQUALS(0.1, mjepw->getDoubleAttr("delta1"));
9393
TS_ASSERT_EQUALS(0.2, mjepw->getDoubleAttr("delta2"));
9494
TS_ASSERT_EQUALS(0.3, mjepw->getDoubleAttr("qbroad"));
95-
TS_ASSERT_EQUALS(0.003, mjepw->getDoubleAttr("qbroad_new"));
95+
TS_ASSERT_EQUALS(0.4, mjepw->getDoubleAttr("qbroad_new"));
9696
}
9797

9898

@@ -110,7 +110,7 @@ class TestPeakWidthModel : public CxxTest::TestSuite
110110
TS_ASSERT_DELTA(0.5 * w, mjepw->calculate(*bnds), meps);
111111
mcjepw->setDelta2(0);
112112
mcjepw->setQbroad(sqrt(3));
113-
mcjepw->setQbroad_new(sqrt(3));
113+
mcjepw->setQbroad_new(0);
114114
TS_ASSERT_DELTA(2 * w, mjepw->calculate(*bnds), meps);
115115
}
116116

0 commit comments

Comments
 (0)