From 9aac01ed5caf4431d85ac9316ece427b88d127dd Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 Sep 2018 19:56:50 +0200 Subject: Strengthen iteration test --- test/test_bitvec.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_bitvec.cpp') diff --git a/test/test_bitvec.cpp b/test/test_bitvec.cpp index 4928282..7b8a55f 100644 --- a/test/test_bitvec.cpp +++ b/test/test_bitvec.cpp @@ -300,7 +300,7 @@ test_iteration(Context&) assert(!bit); ++count; } - // assert(count == N); + assert(count == N); v.flip(); count = 0; @@ -308,7 +308,7 @@ test_iteration(Context&) assert(bit); ++count; } - // assert(count == N); + assert(count == N); } template -- cgit v1.2.1