Skip to content

Commit

Permalink
Widen tolerance for lousy win32 box. Re #4812.
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellTaylor committed Feb 23, 2012
1 parent 6643d14 commit e1fa073
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class FakeEventDataListenerTest : public CxxTest::TestSuite
TS_ASSERT_EQUALS( evbuf->getNumberHistograms(), 2 )
// Should be around 200 events
TS_ASSERT_LESS_THAN( evbuf->getNumberEvents(), 25 )
TS_ASSERT_LESS_THAN( 15, evbuf->getNumberEvents() )
TS_ASSERT_LESS_THAN( 10, evbuf->getNumberEvents() )

Poco::Thread::sleep(100);
// Call it again, and check things again
Expand All @@ -68,7 +68,7 @@ class FakeEventDataListenerTest : public CxxTest::TestSuite
TS_ASSERT_EQUALS( evbuf->getNumberHistograms(), 2 )
// Should be around 200 events
TS_ASSERT_LESS_THAN( evbuf->getNumberEvents(), 25 )
TS_ASSERT_LESS_THAN( 15, evbuf->getNumberEvents() )
TS_ASSERT_LESS_THAN( 10, evbuf->getNumberEvents() )
}

private:
Expand Down

0 comments on commit e1fa073

Please sign in to comment.