Skip to content

Commit

Permalink
Re #5320. Clear MSVC compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellTaylor committed Jun 6, 2012
1 parent ac55f18 commit a2cd029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/MDEvents/test/LoadMDTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ class LoadMDTest : public CxxTest::TestSuite
TS_ASSERT_DELTA(ws->getSignalAt(i), newWS->getSignalAt(i), 1e-6);
TS_ASSERT_DELTA(ws->getErrorAt(i), newWS->getErrorAt(i), 1e-6);
TS_ASSERT_DELTA(ws->getNumEventsAt(i), newWS->getNumEventsAt(i), 1e-6);
TS_ASSERT_DELTA(ws->getIsMaskedAt(i), newWS->getIsMaskedAt(i), 1e-6);
TS_ASSERT_EQUALS(ws->getIsMaskedAt(i), newWS->getIsMaskedAt(i));
}

if (Poco::File(filename).exists())
Expand Down

0 comments on commit a2cd029

Please sign in to comment.