diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-01-25 16:41:42 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-01-25 17:54:43 -0500 |
commit | 97f5e9458c8d618989e5ff386620bfee35942df3 (patch) | |
tree | c0869382db971ef17d8942b7dee5f51aee754dca /test/e2e/run_test.go | |
parent | 6ba8819d336ed3514b57c5818123ddfac80555ef (diff) | |
download | podman-97f5e9458c8d618989e5ff386620bfee35942df3.tar.gz podman-97f5e9458c8d618989e5ff386620bfee35942df3.tar.bz2 podman-97f5e9458c8d618989e5ff386620bfee35942df3.zip |
Pass DefaultMountsFile to podman build
The --default-mounts-file path was not being handled in
podman build. This will enable it to use for testing.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r-- | test/e2e/run_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index 19060ecdc..caeaf190e 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -669,7 +669,7 @@ USER bin` }) It("podman run with secrets", func() { - SkipIfRemote("--default-mount-file option is not supported in podman-remote") + SkipIfRemote("--default-mounts-file option is not supported in podman-remote") containersDir := filepath.Join(podmanTest.TempDir, "containers") err := os.MkdirAll(containersDir, 0755) Expect(err).To(BeNil()) |