Skip to content

Commit

Permalink
Merge pull request #1535 from cgay/threads-tests
Browse files Browse the repository at this point in the history
threads-test-suite: Use test-output() to do output
  • Loading branch information
cgay authored Oct 1, 2023
2 parents 6d3237e + 63f9a15 commit e3cf01c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/common-dylan/tests/threads/simple-locks.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ define constant *print-lock* = make(<lock>);

define method format-l (#rest args)
with-lock (*print-lock*)
apply(format-out, args);
apply(test-output, args);
end with-lock;
end method;

Expand Down

0 comments on commit e3cf01c

Please sign in to comment.