Skip to content

Commit

Permalink
Merge pull request #8832 from hshiina/logfile
Browse files Browse the repository at this point in the history
Fix e2e test for `podman build --logfile`
  • Loading branch information
openshift-merge-robot authored Jan 7, 2021
2 parents bb82c37 + eeb4c12 commit 355e387
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ var _ = Describe("Podman build", func() {

st, err := os.Stat(logfile)
Expect(err).To(BeNil())
Expect(st.Size()).To(Not(Equal(0)))
Expect(st.Size()).To(Not(Equal(int64(0))))

session = podmanTest.Podman([]string{"rmi", "alpine"})
session = podmanTest.Podman([]string{"rmi", "test"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
})
Expand Down

0 comments on commit 355e387

Please sign in to comment.