aboutsummaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/218
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>2023-10-06 18:41:19 +0300
committerJohn Snow <jsnow@redhat.com>2023-10-12 14:21:44 -0400
commitd24eb059faf321fb552cf96a2a1e88e5651347c1 (patch)
tree3025b4d3b7b4c9bd0fd6fe4022fa8c4a01a64888 /tests/qemu-iotests/218
parentf7ccc3295b3d7c49d4a7a3d42242cd5b50111e35 (diff)
iotests: refactor some common qmp result checks into generic pattern
To simplify further conversion. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20231006154125.1068348-10-vsementsov@yandex-team.ru Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/218')
-rwxr-xr-xtests/qemu-iotests/2184
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qemu-iotests/218 b/tests/qemu-iotests/218
index 6320c4cb56..5e74c55b6a 100755
--- a/tests/qemu-iotests/218
+++ b/tests/qemu-iotests/218
@@ -61,14 +61,14 @@ def start_mirror(vm, speed=None, buf_size=None):
sync='full',
speed=speed,
buf_size=buf_size)
+ assert ret['return'] == {}
else:
ret = vm.qmp('blockdev-mirror',
job_id='mirror',
device='source',
target='target',
sync='full')
-
- assert ret['return'] == {}
+ assert ret['return'] == {}
log('')