diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-30 21:03:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 21:03:32 +0100 |
commit | 295a6f7dd086731448a1168a349f62d3035258ca (patch) | |
tree | 30edd7597fe321c138d59f106de356f860ff14cc /test/e2e/pod_stats_test.go | |
parent | 85101f69d8ac18dcd66e19a8a368fbcc4c5e21aa (diff) | |
parent | 8eb0be0a29a647308b3ed9eab2126e1004b6ba85 (diff) | |
download | podman-295a6f7dd086731448a1168a349f62d3035258ca.tar.gz podman-295a6f7dd086731448a1168a349f62d3035258ca.tar.bz2 podman-295a6f7dd086731448a1168a349f62d3035258ca.zip |
Merge pull request #12454 from edsantiago/remove_betrue
More BeTrue cleanup
Diffstat (limited to 'test/e2e/pod_stats_test.go')
-rw-r--r-- | test/e2e/pod_stats_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/pod_stats_test.go b/test/e2e/pod_stats_test.go index 5ec209034..bb145088e 100644 --- a/test/e2e/pod_stats_test.go +++ b/test/e2e/pod_stats_test.go @@ -149,7 +149,7 @@ var _ = Describe("Podman pod stats", func() { stats := podmanTest.Podman([]string{"pod", "stats", "--format", "json", "--no-stream", "-a"}) stats.WaitWithDefaultTimeout() Expect(stats).Should(Exit(0)) - Expect(stats.IsJSONOutputValid()).To(BeTrue()) + Expect(stats.OutputToString()).To(BeValidJSON()) }) It("podman pod stats with GO template", func() { _, ec, podid := podmanTest.CreatePod(nil) @@ -189,6 +189,6 @@ var _ = Describe("Podman pod stats", func() { stats := podmanTest.Podman([]string{"pod", "stats", "--format", "json", "--no-stream", podName}) stats.WaitWithDefaultTimeout() Expect(stats).Should(Exit(0)) - Expect(stats.IsJSONOutputValid()).To(BeTrue()) + Expect(stats.OutputToString()).To(BeValidJSON()) }) }) |