~ chicken-core (chicken-5) 5aad4d93a347f5f1a2d3202245d82e32ea3a11ce


commit 5aad4d93a347f5f1a2d3202245d82e32ea3a11ce
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Wed Sep 12 22:24:54 2012 +0200
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Wed Sep 12 22:28:20 2012 +0200

    added missing quote in test-case in posix-tests.scm

diff --git a/tests/posix-tests.scm b/tests/posix-tests.scm
index 0d58bac1..e0d35ee2 100644
--- a/tests/posix-tests.scm
+++ b/tests/posix-tests.scm
@@ -30,4 +30,4 @@
 ;; even if the process will get called
 (assert-error (process-execute "false\x00123"))
 (assert-error (process-execute "false" '("1" "123\x00456")))
-(assert-error (process-execute "false" '("123\x00456") '("foo\x00bar" "blabla") ("lalala" "qux\x00mooh")))
+(assert-error (process-execute "false" '("123\x00456") '("foo\x00bar" "blabla") '("lalala" "qux\x00mooh")))
Trap