[PATCH 08/12] qemublocktestdata: Fix 'block-raw-reservations' case

Peter Krempa posted 12 patches 3 years, 3 months ago
[PATCH 08/12] qemublocktestdata: Fix 'block-raw-reservations' case
Posted by Peter Krempa 3 years, 3 months ago
The 'reservations' element doesn't have an 'enabled' attribute according
to our schema, remove it.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
---
 tests/qemublocktestdata/xml2json/block-raw-reservations.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/qemublocktestdata/xml2json/block-raw-reservations.xml b/tests/qemublocktestdata/xml2json/block-raw-reservations.xml
index 3ebfe61186..bf59137fd4 100644
--- a/tests/qemublocktestdata/xml2json/block-raw-reservations.xml
+++ b/tests/qemublocktestdata/xml2json/block-raw-reservations.xml
@@ -1,7 +1,7 @@
 <disk device='disk' type='block'>
   <driver name='qemu' type='raw'/>
   <source dev='/dev/blah'>
-    <reservations enabled='yes' managed='yes'/>
+    <reservations managed='yes'/>
     <privateData>
       <nodenames>
         <nodename type='storage' name='node-a-st'/>
-- 
2.38.1
Re: [PATCH 08/12] qemublocktestdata: Fix 'block-raw-reservations' case
Posted by Ján Tomko 3 years, 3 months ago
On a Tuesday in 2022, Peter Krempa wrote:
>The 'reservations' element doesn't have an 'enabled' attribute according
>to our schema, remove it.
>
>Signed-off-by: Peter Krempa <pkrempa@redhat.com>
>---
> tests/qemublocktestdata/xml2json/block-raw-reservations.xml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Ján Tomko <jtomko@redhat.com>

Jano