From 3a35ac8d1be3a0e73ed851b49187b045488d3b3d Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:12:24 -0300 Subject: [PATCH] fix tests --- test/rustint/core_test.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index 516d131..3276ecf 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -211,7 +211,7 @@ (let [ printed (with-out-str (dump '[[POPREF 2] [PUSHFI 2] MUL [PUSHFI 1] ADD NEG])) ] - (is (= printed "0 [POPREF 2]\n1 [PUSHFI 2]\n2 MUL\n3 [PUSHFI 1]\n4 ADD\n5 NEG\nnil" + (is (= printed "0 [POPREF 2]\n1 [PUSHFI 2]\n2 MUL\n3 [PUSHFI 1]\n4 ADD\n5 NEG\n" )) ) ) @@ -222,7 +222,7 @@ (let [ printed (with-out-str (dump '[HLT])) ] - (is (= printed "0 HLT\nnil" + (is (= printed "0 HLT\n" )) ) )