aboutsummaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/093
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2018-06-08 09:29:46 -0300
committerEduardo Habkost <ehabkost@redhat.com>2018-06-08 14:39:24 -0300
commitd7a4228ebb0150e4c97a19077f3fac81d843e2c3 (patch)
tree020374f95228a5fbde5ed53ed03482b285d392e9 /tests/qemu-iotests/093
parentd24d523c14f5f519e04ea49bbe066323bb795879 (diff)
downloadqemu-d7a4228ebb0150e4c97a19077f3fac81d843e2c3.zip
qemu-d7a4228ebb0150e4c97a19077f3fac81d843e2c3.tar.gz
qemu-d7a4228ebb0150e4c97a19077f3fac81d843e2c3.tar.bz2
python: futurize -f lib2to3.fixes.fix_has_key
Change "dict.has_key(key)" to "key in dict" This is necessary for Python 3 compatibility. Done using: $ py=$( (g grep -l -E '^#!.*python';find -name '*.py' -printf '%P\n';) | \ sort -u | grep -v README.sh4) $ futurize -w -f lib2to3.fixes.fix_has_key $py Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20180608122952.2009-5-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/093')
-rwxr-xr-xtests/qemu-iotests/0932
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/093 b/tests/qemu-iotests/093
index c3404a3..68e344f 100755
--- a/tests/qemu-iotests/093
+++ b/tests/qemu-iotests/093
@@ -237,7 +237,7 @@ class ThrottleTestGroupNames(iotests.QMPTestCase):
if name:
self.assertEqual(info["group"], name)
else:
- self.assertFalse(info.has_key('group'))
+ self.assertFalse('group' in info)
return
raise Exception("No group information found for '%s'" % device)