aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_bitvec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_bitvec.cpp')
-rw-r--r--test/test_bitvec.cpp4
1 files changed, 2 insertions, 2 deletions
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 <class T, size_t N>