Skip to content

Commit

Permalink
refs #8330. Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Nov 1, 2013
1 parent 0296fce commit 34e8835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Kernel/test/LogParserTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ class LogParserTest : public CxxTest::TestSuite
TSM_ASSERT("Mask should NOT applied Due to start marker", maskCollectStartStop->nthValue(0)) // Mask OFF
TSM_ASSERT("Mask SHOULD applied Due to stop marker", !maskCollectStartStop->nthValue(1)) // Mask ON
// Compare for consistency.
for(size_t i = 0; i < maskBeginEnd->size(); ++i)
for(int i = 0; i < maskBeginEnd->size(); ++i)
{
TS_ASSERT_EQUALS(maskBeginEnd->nthTime(i), maskCollectStartStop->nthTime(i));
TS_ASSERT_EQUALS(maskBeginEnd->nthValue(i), maskCollectStartStop->nthValue(i));
Expand Down

0 comments on commit 34e8835

Please sign in to comment.