From 400f7d73ee3623e13d2dfbe2b90962d0453d6196 Mon Sep 17 00:00:00 2001 From: Akuli Date: Wed, 6 Dec 2023 21:48:55 +0200 Subject: [PATCH] fix --- tests/should_succeed/compile_time_if.jou | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/should_succeed/compile_time_if.jou b/tests/should_succeed/compile_time_if.jou index a228d77a..1341d8f2 100644 --- a/tests/should_succeed/compile_time_if.jou +++ b/tests/should_succeed/compile_time_if.jou @@ -22,7 +22,7 @@ if not WINDOWS and not MACOS: if not (not WINDOWS and not MACOS): def bar() -> void: - printf("obar\n") + printf("obar") if not (WINDOWS or MACOS): def bar() -> void: printf("bar")