Skip to content
This repository was archived by the owner on Jun 28, 2024. It is now read-only.

Commit 6baac89

Browse files
authored
Merge pull request #724 from clarecch/master
integration/docker: modify testcase of memory constraints update
2 parents 8cfedd8 + 6734538 commit 6baac89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/docker/mem_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ var _ = Describe("memory constraints", func() {
142142
_, _, exitCode = dockerRun(args...)
143143
Expect(exitCode).To(BeZero())
144144

145-
// 256 MB
146-
memSize = fmt.Sprintf("%d", 256*1024*1024)
145+
// 640 MB: 512MB + 128MB
146+
memSize = fmt.Sprintf("%d", 640*1024*1024)
147147

148148
args = []string{"--memory", memSize, "--memory-reservation", memSize}
149149
if useSwap {

0 commit comments

Comments
 (0)