commit | c8a66d353017cc8cba75fe3971d0f4403669500d | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davide.pesavento@lip6.fr> | Wed Oct 21 05:04:14 2015 +0200 |
committer | Davide Pesavento <davide.pesavento@lip6.fr> | Wed Oct 21 17:28:13 2015 +0200 |
tree | a3cc53169d9390964fea3027eae5dd82869c19d3 | |
parent | 135461127737b6458d1bdde5653ca34f88ea04e4 [diff] |
tests: delete pointless assert size_t is an unsigned type, therefore the comparison is always true. Change-Id: I851fa0d59569ebc8e2572b1938020aadabb05f27
diff --git a/tests/test-common.hpp b/tests/test-common.hpp index f5a309a..7c9c60d 100644 --- a/tests/test-common.hpp +++ b/tests/test-common.hpp
@@ -88,8 +88,6 @@ void advanceClocks(const time::nanoseconds& tick, size_t nTicks = 1) { - BOOST_ASSERT(nTicks >= 0); - this->advanceClocks(tick, tick * nTicks); }