summaryrefslogtreecommitdiffhomepage
path: root/test/bitbuf.test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/bitbuf.test.c')
-rw-r--r--test/bitbuf.test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bitbuf.test.c b/test/bitbuf.test.c
index 58d1c4d..324a7f6 100644
--- a/test/bitbuf.test.c
+++ b/test/bitbuf.test.c
@@ -14,7 +14,7 @@ static union {
} bb_buf;
static struct bitbuf bb = {bb_buf.buf, 512, 512 * 8, 0, false, false, "test"};
-TEST("The possible UB in bitbuf_appendbuf shouldn't trigger horrible bugs", 0) {
+TEST("The possible UB in bitbuf_appendbuf shouldn't trigger horrible bugs") {
char unalign[3] = {'X', 'X', 'X'};
char _buf[32 + sizeof(bitbuf_cell)];
char *buf = _buf;