diff options
author | Koichi Sasada <[email protected]> | 2024-06-14 03:44:08 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2024-06-14 04:30:19 +0900 |
commit | 420ef906bd13e1dd403047d85207690e1af0db54 (patch) | |
tree | 3c7586fafee6af44c53fec8839ef4510f7438fdc /spec/mspec/lib | |
parent | 0321f2c8fe7520762af49c4c4e1598ada964c402 (diff) |
respect `--error-output stderr` on parallel mode
`MultiFormatter#print_exception` should respect `--error-output stderr`.
Diffstat (limited to 'spec/mspec/lib')
-rw-r--r-- | spec/mspec/lib/mspec/runner/formatters/multi.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/mspec/lib/mspec/runner/formatters/multi.rb b/spec/mspec/lib/mspec/runner/formatters/multi.rb index a723ae8eb9..fa1da3766b 100644 --- a/spec/mspec/lib/mspec/runner/formatters/multi.rb +++ b/spec/mspec/lib/mspec/runner/formatters/multi.rb @@ -42,6 +42,6 @@ module MultiFormatter end def print_exception(exc, count) - print "\n#{count})\n#{exc}\n" + @err.print "\n#{count})\n#{exc}\n" end end |