Skip to content

Fix utf8 truncated output #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions controls/container_images.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
ref 'caching and apt-get update', url: 'https://github.com/moby/moby/issues/3313'

docker.images.ids.each do |id|
describe command("docker history #{id}| grep -e 'update'") do
describe command("docker --no-trunc history #{id}| grep -e 'update'") do
its('stdout') { should eq '' }
end
end
Expand Down Expand Up @@ -220,7 +220,7 @@
ref 'Best practices for writing Dockerfiles', url: 'https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/'

docker.images.ids.each do |id|
describe command("docker history #{id}| grep 'ADD'") do
describe command("docker --no-trunc history #{id}| grep 'ADD'") do
its('stdout') { should eq '' }
end
end
Expand Down