diff options
author | baude <bbaude@redhat.com> | 2018-07-30 12:15:01 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-30 23:53:08 +0000 |
commit | 5a4e5902a00fe593afc560e8ef9af1b246821f62 (patch) | |
tree | bb9429778c5e2db9a73cd1ca75fb90734176d43b /test/e2e/load_test.go | |
parent | 8694e5414c97506302e424b36759de70008190ae (diff) | |
download | podman-5a4e5902a00fe593afc560e8ef9af1b246821f62.tar.gz podman-5a4e5902a00fe593afc560e8ef9af1b246821f62.tar.bz2 podman-5a4e5902a00fe593afc560e8ef9af1b246821f62.zip |
Integration Test Improvements #2
This is the second round of performance improvements for out
integration tests.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #1190
Approved by: rhatdan
Diffstat (limited to 'test/e2e/load_test.go')
-rw-r--r-- | test/e2e/load_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/e2e/load_test.go b/test/e2e/load_test.go index 8ea4440ba..a4910df0c 100644 --- a/test/e2e/load_test.go +++ b/test/e2e/load_test.go @@ -168,9 +168,8 @@ var _ = Describe("Podman load", func() { It("podman load localhost repo from scratch", func() { outfile := filepath.Join(podmanTest.TempDir, "load_test.tar.gz") - podmanTest.RestoreArtifact(fedoraMinimal) - setup := podmanTest.Podman([]string{"tag", "fedora-minimal", "hello:world"}) + setup := podmanTest.Podman([]string{"tag", ALPINE, "hello:world"}) setup.WaitWithDefaultTimeout() Expect(setup.ExitCode()).To(Equal(0)) |