summaryrefslogtreecommitdiff
path: root/test/unit/div.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/div.c')
-rw-r--r--test/unit/div.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/div.c b/test/unit/div.c
index b47f10b2..29aea665 100644
--- a/test/unit/div.c
+++ b/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);
}