summaryrefslogtreecommitdiff
path: root/deps/jemalloc/test/unit/div.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jemalloc/test/unit/div.c')
-rw-r--r--deps/jemalloc/test/unit/div.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/jemalloc/test/unit/div.c b/deps/jemalloc/test/unit/div.c
index b47f10b2b..29aea6659 100644
--- a/deps/jemalloc/test/unit/div.c
+++ b/deps/jemalloc/test/unit/div.c
@@ -14,7 +14,7 @@ TEST_BEGIN(test_div_exhaustive) {
dividend += divisor) {
size_t quotient = div_compute(
&div_info, dividend);
- assert_zu_eq(dividend, quotient * divisor,
+ expect_zu_eq(dividend, quotient * divisor,
"With divisor = %zu, dividend = %zu, "
"got quotient %zu", divisor, dividend, quotient);
}