tests: Increase test VM memory to 3 GB

The reason for this change is that the tar image kickstart installation
test doesn't work with 2 GB.

Related: rhbz#1733504
This commit is contained in:
Jiri Kortus 2019-09-25 13:52:44 +02:00 committed by Alexander Todorov
parent 64f00d94b8
commit 2795969126

View File

@ -28,7 +28,7 @@ class ComposerTestCase(unittest.TestCase):
def setUp(self): def setUp(self):
self.network = testvm.VirtNetwork(0) self.network = testvm.VirtNetwork(0)
self.machine = testvm.VirtMachine(self.image, networking=self.network.host(), memory_mb=2048) self.machine = testvm.VirtMachine(self.image, networking=self.network.host(), memory_mb=3072)
print("Starting virtual machine '{}'".format(self.image)) print("Starting virtual machine '{}'".format(self.image))
self.machine.start() self.machine.start()