aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_bitvec.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-29 19:56:50 +0200
committerDavid Robillard <d@drobilla.net>2018-09-29 19:56:50 +0200
commit9aac01ed5caf4431d85ac9316ece427b88d127dd (patch)
treeec05a0caa715797dc4b178d467c3cbfaaa9835bf /test/test_bitvec.cpp
parent1c826ec5da9f5c364fe1a32cf55200548a9985f0 (diff)
downloadchilbert-9aac01ed5caf4431d85ac9316ece427b88d127dd.tar.gz
chilbert-9aac01ed5caf4431d85ac9316ece427b88d127dd.tar.bz2
chilbert-9aac01ed5caf4431d85ac9316ece427b88d127dd.zip
Strengthen iteration test
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>