summaryrefslogtreecommitdiff
path: root/tests/uitests
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2020-11-10 15:49:24 -0500
committerCole Robinson <crobinso@redhat.com>2020-11-11 19:06:32 -0500
commit6a6c1c13d74cc31e9d581b74bd7101c141a94a02 (patch)
treefe1643c2a6fca35ca7912741818ab22d94475ee0 /tests/uitests
parent3d07b28a360eb1ba1507c5713b99954eb226751f (diff)
downloadvirt-manager-6a6c1c13d74cc31e9d581b74bd7101c141a94a02.tar.gz
diskbackend: Fix volume lookup for existing rbd disk
Signed-off-by: Cole Robinson <crobinso@redhat.com>
Diffstat (limited to 'tests/uitests')
-rw-r--r--tests/uitests/test_addhardware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/uitests/test_addhardware.py b/tests/uitests/test_addhardware.py
index c1b02ee2..22852601 100644
--- a/tests/uitests/test_addhardware.py
+++ b/tests/uitests/test_addhardware.py
@@ -130,7 +130,7 @@ def testAddCephDisk(app):
tab = details.find("disk-tab")
lib.utils.check(lambda: tab.showing)
disk_path = tab.find("disk-source-path")
- lib.utils.check(lambda: "rbd://" in disk_path.text)
+ lib.utils.check(lambda: "rbd-sourcename/some-rbd-vol" in disk_path.text)
def testAddDisks(app):