mirror of
https://github.com/containers/podman.git
synced 2025-08-02 09:12:36 +08:00
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:
@ -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:
|
||||
|
Reference in New Issue
Block a user