From 63f9a15c2fe1b32446930aa7295af367950bfa8d Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Sat, 30 Sep 2023 22:28:31 +0000 Subject: [PATCH] threads-test-suite: Use test-output() to do output https://github.com/dylan-lang/testworks/issues/83 --- sources/common-dylan/tests/threads/simple-locks.dylan | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/common-dylan/tests/threads/simple-locks.dylan b/sources/common-dylan/tests/threads/simple-locks.dylan index e45e78d947..a549bf78d8 100644 --- a/sources/common-dylan/tests/threads/simple-locks.dylan +++ b/sources/common-dylan/tests/threads/simple-locks.dylan @@ -11,7 +11,7 @@ define constant *print-lock* = make(); define method format-l (#rest args) with-lock (*print-lock*) - apply(format-out, args); + apply(test-output, args); end with-lock; end method;