mirror of https://github.com/containers/podman.git
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>
This commit is contained in:
parent
19f4a463ed
commit
88b57dd9f1
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue