summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Holzinger <pholzing@redhat.com>2022-07-21 18:11:53 +0200
committerPaul Holzinger <pholzing@redhat.com>2022-07-21 18:11:53 +0200
commit88b57dd9f1cb56c65e2ccce9979ce7e89c20a855 (patch)
tree56f5baf11df9646acbd47550d08e0cbd683c5cb4
parent19f4a463ed790ab2f527fba7385f0dcba7247379 (diff)
downloadpodman-88b57dd9f1cb56c65e2ccce9979ce7e89c20a855.tar.gz
podman-88b57dd9f1cb56c65e2ccce9979ce7e89c20a855.tar.bz2
podman-88b57dd9f1cb56c65e2ccce9979ce7e89c20a855.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.go2
-rw-r--r--pkg/machine/e2e/set_test.go2
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: