From 75740be39541296d379e34902e11ba49e96a1867 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 13 Sep 2022 15:13:09 -0700 Subject: all: stop using deprecated GenerateNonCryptoID In view of https://github.com/containers/storage/pull/1337, do this: for f in $(git grep -l stringid.GenerateNonCryptoID | grep -v '^vendor/'); do sed -i 's/stringid.GenerateNonCryptoID/stringid.GenerateRandomID/g' $f; done Signed-off-by: Kir Kolyshkin --- test/e2e/run_staticip_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/e2e/run_staticip_test.go') diff --git a/test/e2e/run_staticip_test.go b/test/e2e/run_staticip_test.go index 12783cd29..057fbf775 100644 --- a/test/e2e/run_staticip_test.go +++ b/test/e2e/run_staticip_test.go @@ -66,7 +66,7 @@ var _ = Describe("Podman run with --ip flag", func() { }) It("Podman run with specified static IPv6 has correct IP", func() { - netName := "ipv6-" + stringid.GenerateNonCryptoID() + netName := "ipv6-" + stringid.GenerateRandomID() ipv6 := "fd46:db93:aa76:ac37::10" net := podmanTest.Podman([]string{"network", "create", "--subnet", "fd46:db93:aa76:ac37::/64", netName}) net.WaitWithDefaultTimeout() -- cgit v1.2.3-54-g00ecf