diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-16 07:32:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 07:32:58 +0000 |
commit | a90dac9454698fd024bcac49b371701355ffaf24 (patch) | |
tree | b167036c22fd48d683eb03e39bf8b00aebbc4708 /test | |
parent | 78c149ff9129934b5948d01d1178a5427b5b0753 (diff) | |
parent | 21819254ddb7d48f3483cadcecb20a63d1db8cd7 (diff) | |
download | podman-a90dac9454698fd024bcac49b371701355ffaf24.tar.gz podman-a90dac9454698fd024bcac49b371701355ffaf24.tar.bz2 podman-a90dac9454698fd024bcac49b371701355ffaf24.zip |
Merge pull request #14605 from Luap99/update-golangci-lint
golangci-lint: update to v1.46.2
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/systemd_activate_test.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/e2e/systemd_activate_test.go b/test/e2e/systemd_activate_test.go index c50e43b8d..240139b98 100644 --- a/test/e2e/systemd_activate_test.go +++ b/test/e2e/systemd_activate_test.go @@ -8,6 +8,7 @@ import ( "os" "os/exec" "path/filepath" + "strconv" "syscall" "time" @@ -61,9 +62,10 @@ var _ = Describe("Systemd activate", func() { host := "127.0.0.1" port, err := podmanUtils.GetRandomPort() Expect(err).ToNot(HaveOccurred()) + addr := net.JoinHostPort(host, strconv.Itoa(port)) activateSession := testUtils.StartSystemExec(activate, []string{ - fmt.Sprintf("--listen=%s:%d", host, port), + "--listen", addr, podmanTest.PodmanBinary, "--root=" + filepath.Join(tempDir, "server_root"), "system", "service", @@ -73,7 +75,7 @@ var _ = Describe("Systemd activate", func() { // Curried functions for specialized podman calls podmanRemote := func(args ...string) *testUtils.PodmanSession { - args = append([]string{"--url", fmt.Sprintf("tcp://%s:%d", host, port)}, args...) + args = append([]string{"--url", "tcp://" + addr}, args...) return testUtils.SystemExec(podmanTest.RemotePodmanBinary, args) } @@ -111,7 +113,7 @@ var _ = Describe("Systemd activate", func() { port, err := podmanUtils.GetRandomPort() Expect(err).ToNot(HaveOccurred()) - addr := fmt.Sprintf("%s:%d", host, port) + addr := net.JoinHostPort(host, strconv.Itoa(port)) // start systemd activation with datagram socket activateSession := testUtils.StartSystemExec(activate, []string{ |