summaryrefslogtreecommitdiff
path: root/test/e2e/system_df_test.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-07-13 10:34:41 -0500
committerBrent Baude <bbaude@redhat.com>2020-07-13 17:11:26 -0500
commit99cc07670099cbfa4bfc2dc7b24b39b254bc9561 (patch)
tree70c86f1e9b77595505c820b03eab4edd3feae580 /test/e2e/system_df_test.go
parente2a8e037d1c3a2176cd15493812bf165faea63f2 (diff)
downloadpodman-99cc07670099cbfa4bfc2dc7b24b39b254bc9561.tar.gz
podman-99cc07670099cbfa4bfc2dc7b24b39b254bc9561.tar.bz2
podman-99cc07670099cbfa4bfc2dc7b24b39b254bc9561.zip
Fix systemd pid 1 test
fedora removed the systemd package from its standard container image causing our systemd pid1 test to fail. Replacing usage of fedora to ubi-init. adding ubi images to the cache for local tests. also, remove installation of test/policy.json to the system wide /etc/containers Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e/system_df_test.go')
-rw-r--r--test/e2e/system_df_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/system_df_test.go b/test/e2e/system_df_test.go
index 01ceac325..16a8dbb7e 100644
--- a/test/e2e/system_df_test.go
+++ b/test/e2e/system_df_test.go
@@ -56,7 +56,7 @@ var _ = Describe("podman system df", func() {
images := strings.Fields(session.OutputToStringArray()[1])
containers := strings.Fields(session.OutputToStringArray()[2])
volumes := strings.Fields(session.OutputToStringArray()[3])
- Expect(images[1]).To(Equal("9"))
+ Expect(images[1]).To(Equal("11"))
Expect(containers[1]).To(Equal("2"))
Expect(volumes[2]).To(Equal("1"))
})