Skip to content

Commit

Permalink
Fix regressed test.
Browse files Browse the repository at this point in the history
Refs #10004.
  • Loading branch information
Harry Jeffery committed Aug 5, 2014
1 parent a641bcc commit 9f048b5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -361,7 +361,7 @@ class ReflectometryReductionOneAutoTest: public CxxTest::TestSuite
TS_ASSERT_EQUALS(inst->getNumberParameter("PointDetectorStart")[0],
boost::lexical_cast<double>(pointDetectorStartStop[0]));
TS_ASSERT_EQUALS(inst->getNumberParameter("PointDetectorStop")[0],
boost::lexical_cast<double>(pointDetectorStartStop.at(1)));
boost::lexical_cast<double>(pointDetectorStartStop[1]));

// Remove workspace from the data service.
AnalysisDataService::Instance().remove(outWSQName);
Expand Down

0 comments on commit 9f048b5

Please sign in to comment.