Skip to content

Commit 3361b08

Browse files
committed
break test
1 parent 51c2a46 commit 3361b08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ void run_context_tests(int use_prealloc) {
166166
sign_prealloc = malloc(secp256k1_context_preallocated_size(SECP256K1_CONTEXT_SIGN));
167167
vrfy_prealloc = malloc(secp256k1_context_preallocated_size(SECP256K1_CONTEXT_VERIFY));
168168
both_prealloc = malloc(secp256k1_context_preallocated_size(SECP256K1_CONTEXT_SIGN | SECP256K1_CONTEXT_VERIFY));
169-
CHECK(none_prealloc != NULL);
169+
CHECK(none_prealloc == NULL);
170170
CHECK(sign_prealloc != NULL);
171171
CHECK(vrfy_prealloc != NULL);
172172
CHECK(both_prealloc != NULL);

0 commit comments

Comments
 (0)