Skip to content

Commit

Permalink
fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mwrock committed Apr 17, 2016
1 parent 51fc897 commit d210532
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/powershell_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,17 @@
end

it 'should have stdout' do
expect(output.stdout).to eq('Hello')
expect(output.stdout).to eq("Hello\r\n")
expect(output.stdout).to eq(@captured_stdout)
end

it 'should have stderr' do
expect(output.stderr).to eq(', world!')
expect(output.stderr).to eq(", world!\r\n")
expect(output.stderr).to eq(@captured_stderr)
end

it 'should have output' do
expect(output.output).to eq('Hello, world!')
expect(output.output).to eq("Hello\r\n, world!\r\n")
end
end

Expand Down

0 comments on commit d210532

Please sign in to comment.