From 3f29345d3262e3a7f0ce5f9a51ef99c833b81ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Tue, 21 Feb 2017 00:49:00 +0100 Subject: [PATCH] tests/storage: read-only volume should not have save_on_stop=True --- qubes/tests/integ/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/tests/integ/storage.py b/qubes/tests/integ/storage.py index 4fbb92fd..a4ab4596 100644 --- a/qubes/tests/integ/storage.py +++ b/qubes/tests/integ/storage.py @@ -116,7 +116,7 @@ class StorageTestMixin(qubes.tests.SystemTestsMixin): 'pool': self.pool.name, 'size': size, 'internal': False, - 'save_on_stop': True, + 'save_on_stop': False, 'rw': False, } testvol = self.vm1.storage.init_volume('testvol', volume_config)