summaryrefslogtreecommitdiff
path: root/tests/test_xmlparse.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2022-02-27 12:54:39 -0500
committerCole Robinson <crobinso@redhat.com>2022-02-27 12:55:48 -0500
commit6a21b38ae8f1cc9d7b2f9a7dd34144cf4f015474 (patch)
tree6bf59365cbd9f96db2c1090963561ad0ce7a92bb /tests/test_xmlparse.py
parentd6b74a83d1d048bd5467d38adff41a72f6cd3ee8 (diff)
downloadvirt-manager-6a21b38ae8f1cc9d7b2f9a7dd34144cf4f015474.tar.gz
tests: testdriver: Rename disk-pool -> pool-logical
It _is_ type=logical, so make it clear in the naming. Plus we already have a type=disk pool named pool-disk Signed-off-by: Cole Robinson <crobinso@redhat.com>
Diffstat (limited to 'tests/test_xmlparse.py')
-rw-r--r--tests/test_xmlparse.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_xmlparse.py b/tests/test_xmlparse.py
index 49c924c7..1d67a0d5 100644
--- a/tests/test_xmlparse.py
+++ b/tests/test_xmlparse.py
@@ -624,11 +624,11 @@ def testChangeKVMMedia():
disk = guest.devices.disk[1]
disk.set_source_path("/dev/default-pool/default-vol")
assert disk.get_source_path() == "/dev/default-pool/default-vol"
- disk.set_source_path("/dev/disk-pool/diskvol1")
+ disk.set_source_path("/dev/pool-logical/diskvol1")
disk.sync_path_props()
disk = guest.devices.disk[2]
- disk.set_source_path("/dev/disk-pool/diskvol1")
+ disk.set_source_path("/dev/pool-logical/diskvol1")
disk.sync_path_props()
disk = guest.devices.disk[3]
@@ -636,7 +636,7 @@ def testChangeKVMMedia():
disk.sync_path_props()
disk = guest.devices.disk[4]
- disk.set_source_path("/dev/disk-pool/diskvol1")
+ disk.set_source_path("/dev/pool-logical/diskvol1")
disk.sync_path_props()
_alter_compare(kvmconn, guest.get_xml(), outfile)