We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c07dd53 commit 01353c1Copy full SHA for 01353c1
tests/integration/container_test.py
@@ -342,7 +342,6 @@ def test_create_with_memory_constraints_with_str(self):
342
BUSYBOX, 'true',
343
host_config=self.client.create_host_config(
344
memswap_limit='1G',
345
- mem_swappiness='40',
346
mem_limit='700M'
347
)
348
@@ -353,7 +352,7 @@ def test_create_with_memory_constraints_with_str(self):
353
352
354
self.assertIn('HostConfig', inspect)
355
host_config = inspect['HostConfig']
356
- for limit in ['Memory', 'MemorySwappiness', 'MemorySwap']:
+ for limit in ['Memory', 'MemorySwap']:
357
self.assertIn(limit, host_config)
358
359
def test_create_with_memory_constraints_with_int(self):
0 commit comments