diff options
author | Alberto Garcia <berto@igalia.com> | 2021-02-22 12:57:37 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2021-03-08 14:55:18 +0100 |
commit | fa818b2febfc090acb9b2e69c1c2a4e4b38aee83 (patch) | |
tree | 0bfe724f05f13910833fee15db38acc52df81176 /tests/qemu-iotests/245 | |
parent | 138d2931979cb7ee4a54a434a54088231f6980ff (diff) | |
download | qemu-fa818b2febfc090acb9b2e69c1c2a4e4b38aee83.zip qemu-fa818b2febfc090acb9b2e69c1c2a4e4b38aee83.tar.gz qemu-fa818b2febfc090acb9b2e69c1c2a4e4b38aee83.tar.bz2 |
iotests: Drop deprecated 'props' from object-add
Signed-off-by: Alberto Garcia <berto@igalia.com>
Message-Id: <20210222115737.2993-1-berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/245')
-rwxr-xr-x | tests/qemu-iotests/245 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qemu-iotests/245 b/tests/qemu-iotests/245 index cfdeb90..30b1d7b 100755 --- a/tests/qemu-iotests/245 +++ b/tests/qemu-iotests/245 @@ -644,12 +644,12 @@ class TestBlockdevReopen(iotests.QMPTestCase): ###### throttle ###### ###################### opts = { 'qom-type': 'throttle-group', 'id': 'group0', - 'props': { 'limits': { 'iops-total': 1000 } } } + 'limits': { 'iops-total': 1000 } } result = self.vm.qmp('object-add', conv_keys = False, **opts) self.assert_qmp(result, 'return', {}) opts = { 'qom-type': 'throttle-group', 'id': 'group1', - 'props': { 'limits': { 'iops-total': 2000 } } } + 'limits': { 'iops-total': 2000 } } result = self.vm.qmp('object-add', conv_keys = False, **opts) self.assert_qmp(result, 'return', {}) |