Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Allow for some data to not get captured
Browse files Browse the repository at this point in the history
[#115879419]
  • Loading branch information
Michael Fraenkel committed Mar 17, 2016
1 parent 0b06296 commit a659244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion warden/spec/support/examples/running_commands.rb
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def stream(client, job_id)

responses = stream(client, job_id)
expect(responses.last.exit_status).to eq 255
expect(responses.map(&:data).join.size).to be > 1024 * 100
expect(responses.map(&:data).join.size).to be > 1024 * 100 - 200
expect(responses.map(&:data).join.size).to be <= 1024 * 100 + 1024 * 64

# Test that iomux-spawn was killed
Expand Down

0 comments on commit a659244

Please sign in to comment.