diff options
| author | nagachika <nagachika@ruby-lang.org> | 2023-06-25 12:37:14 +0900 |
|---|---|---|
| committer | nagachika <nagachika@ruby-lang.org> | 2023-06-25 12:37:14 +0900 |
| commit | 0c00fb5d92dbd87bfdde393d1e3bece9b457d17c (patch) | |
| tree | 5eddb74659b1a13d69fa95a7ce8b846a3c99f451 /spec/ruby/core/process/spawn_spec.rb | |
| parent | e3d10dedf106357d2b17fc8786d35035e0b366cf (diff) | |
merge revision(s) ec14861f0d7a1e99d3e6667dee2f4c9cc426d5f3:
Update to ruby/spec@7e680fa
---
spec/ruby/core/dir/home_spec.rb | 5 +++--
spec/ruby/core/process/spawn_spec.rb | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
Diffstat (limited to 'spec/ruby/core/process/spawn_spec.rb')
| -rw-r--r-- | spec/ruby/core/process/spawn_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/process/spawn_spec.rb b/spec/ruby/core/process/spawn_spec.rb index 7a280ccdf4..c8a58c4d04 100644 --- a/spec/ruby/core/process/spawn_spec.rb +++ b/spec/ruby/core/process/spawn_spec.rb @@ -482,7 +482,7 @@ describe "Process.spawn" do -> do wrapped_io = mock('wrapped IO') wrapped_io.should_receive(:to_io).and_return(file) - Process.wait Process.spawn('echo "Hello World"', out: wrapped_io) + Process.wait Process.spawn('echo Hello World', out: wrapped_io) end.should output_to_fd("Hello World\n", file) end end |
