diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-07-21 18:11:53 +0200 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2022-07-26 14:24:49 -0400 |
commit | 1f48980af9e44f4096b8e67edd5f4596f69e204f (patch) | |
tree | c9f7172f7839c3632668752b6727a95abab9b2db | |
parent | cbcbde587de9f14e696be9a58d6e36c7c45e926d (diff) | |
download | podman-1f48980af9e44f4096b8e67edd5f4596f69e204f.tar.gz podman-1f48980af9e44f4096b8e67edd5f4596f69e204f.tar.bz2 podman-1f48980af9e44f4096b8e67edd5f4596f69e204f.zip |
fix broken machine test
The memory both local and in the CI test is converted to 3822. I don't
know why this changed but I want to have this working again. For the
future we should look at a more robust solution.
Fixes #15012
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
-rw-r--r-- | pkg/machine/e2e/init_test.go | 2 | ||||
-rw-r--r-- | pkg/machine/e2e/set_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pkg/machine/e2e/init_test.go b/pkg/machine/e2e/init_test.go index 52a62cee3..b246dc4da 100644 --- a/pkg/machine/e2e/init_test.go +++ b/pkg/machine/e2e/init_test.go @@ -108,7 +108,7 @@ var _ = Describe("podman machine init", func() { switch runtime.GOOS { // os's handle memory differently case "linux": - Expect(memorySession.outputToString()).To(ContainSubstring("3821")) + Expect(memorySession.outputToString()).To(ContainSubstring("3822")) case "darwin": Expect(memorySession.outputToString()).To(ContainSubstring("3824")) default: diff --git a/pkg/machine/e2e/set_test.go b/pkg/machine/e2e/set_test.go index df4136a82..4839e33da 100644 --- a/pkg/machine/e2e/set_test.go +++ b/pkg/machine/e2e/set_test.go @@ -62,7 +62,7 @@ var _ = Describe("podman machine set", func() { switch runtime.GOOS { // it seems macos and linux handle memory differently case "linux": - Expect(memorySession.outputToString()).To(ContainSubstring("3821")) + Expect(memorySession.outputToString()).To(ContainSubstring("3822")) case "darwin": Expect(memorySession.outputToString()).To(ContainSubstring("3824")) default: |