From 57d698c70879bcfa60f631b979d1a5b608e81205 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 29 Oct 2025 18:44:45 +0200 Subject: [PATCH] Fixing tests --- foreign/c/system/test.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foreign/c/system/test.scm b/foreign/c/system/test.scm index df09325..7c56d6a 100644 --- a/foreign/c/system/test.scm +++ b/foreign/c/system/test.scm @@ -17,7 +17,7 @@ (test-assert (string=? text "Hello")) -(define exit-code2 (system "no-such-command")) +(define exit-code2 (system "no-such-command 2> /dev/null")) (test-assert (> exit-code2 0))