From b973b21cc71accb7b74148033f2427b675a522db Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Thu, 22 Dec 2022 09:24:26 -0600 Subject: [PATCH] tests: eval: Tweak a hexadecimal constant test. * tests/unit/eval.scm: Switch the constant used in the hexadecimal constant test to one that includes a letter digit. --- tests/unit/eval.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/eval.scm b/tests/unit/eval.scm index 9c0ee93..861fca5 100644 --- a/tests/unit/eval.scm +++ b/tests/unit/eval.scm @@ -305,8 +305,8 @@ (eval-word '( "042"))) (test-equal "Evaluates arithmetic constant (hexadecimal)" - '("66") - (eval-word '( "0x42"))) + '("74") + (eval-word '( "0x4a"))) ;;; Binary (and tertiary) operators