diff options
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r-- | test/e2e/run_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index 3b10fdff3..3fbdd4339 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -222,7 +222,7 @@ var _ = Describe("Podman run", func() { It("podman run a container with a --rootfs", func() { rootfs := filepath.Join(tempdir, "rootfs") uls := filepath.Join("/", "usr", "local", "share") - uniqueString := stringid.GenerateNonCryptoID() + uniqueString := stringid.GenerateRandomID() testFilePath := filepath.Join(uls, uniqueString) tarball := filepath.Join(tempdir, "rootfs.tar") @@ -848,7 +848,7 @@ USER bin`, BB) err = ioutil.WriteFile(hookJSONPath, []byte(hookJSON), 0644) Expect(err).ToNot(HaveOccurred()) - random := stringid.GenerateNonCryptoID() + random := stringid.GenerateRandomID() hookScript := fmt.Sprintf(`#!/bin/sh echo -n %s >%s |