Skip to content

Commit

Permalink
Refs #4713 modify test results for new coefficients
Browse files Browse the repository at this point in the history
  • Loading branch information
VickieLynch committed Feb 1, 2012
1 parent 88a6a33 commit 41b77ee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ class SphericalAbsorptionTest : public CxxTest::TestSuite
Mantid::API::MatrixWorkspace_sptr result;
TS_ASSERT_THROWS_NOTHING( result = boost::dynamic_pointer_cast<Mantid::API::MatrixWorkspace>
(Mantid::API::AnalysisDataService::Instance().retrieve(outputWS)) );
TS_ASSERT_DELTA( result->readY(0).front(), 0.9785, 0.0001 );
TS_ASSERT_DELTA( result->readY(0).back(), 0.9606, 0.0001 );
TS_ASSERT_DELTA( result->readY(0)[8], 0.9626, 0.0001 );
TS_ASSERT_DELTA( result->readY(0).front(), 0.9959, 0.0001 );
TS_ASSERT_DELTA( result->readY(0).back(), 0.9766, 0.0001 );
TS_ASSERT_DELTA( result->readY(0)[8], 0.9787, 0.0001 );

Mantid::API::AnalysisDataService::Instance().remove(outputWS);
}
Expand Down

0 comments on commit 41b77ee

Please sign in to comment.