aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/common/68 number arithmetic/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/test cases/common/68 number arithmetic/meson.build b/test cases/common/68 number arithmetic/meson.build
index 02c7878..495a83e 100644
--- a/test cases/common/68 number arithmetic/meson.build
+++ b/test cases/common/68 number arithmetic/meson.build
@@ -25,16 +25,16 @@ assert((5 % 2) == 1, 'Integer modulo (odd) is broken')
assert((4 % 2) == 0, 'Integer modulo (even) is broken')
if 2 * 1 % 2 != 0
- error('Modulo precendence with multiplication is broken')
+ error('Modulo precedence with multiplication is broken')
endif
if 2 + 1 % 2 != 3
- error('Modulo precendence with addition is broken')
+ error('Modulo precedence with addition is broken')
endif
if 9 / 9 % 2 != 1
- error('Modulo precendence with division is broken')
+ error('Modulo precedence with division is broken')
endif
if 9 - 9 % 2 != 8
- error('Modulo precendence with subtraction is broken')
+ error('Modulo precedence with subtraction is broken')
endif
assert(2.is_even(), 'int is_even() broken for even value')