tests: Fix accidental trunction from int to bool

This commit is contained in:
practicalswift 2018-08-28 16:55:48 +02:00
parent aa39ca7645
commit 1cc58978b7
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ BOOST_AUTO_TEST_CASE(manythreads)
boost::mutex counterMutex[10];
int counter[10] = { 0 };
FastRandomContext rng(42);
FastRandomContext rng{/* fDeterministic */ true};
auto zeroToNine = [](FastRandomContext& rc) -> int { return rc.randrange(10); }; // [0, 9]
auto randomMsec = [](FastRandomContext& rc) -> int { return -11 + (int)rc.randrange(1012); }; // [-11, 1000]
auto randomDelta = [](FastRandomContext& rc) -> int { return -1000 + (int)rc.randrange(2001); }; // [-1000, 1000]