summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMax Reitz2018-10-22 15:53:05 +0200
committerEduardo Habkost2018-10-31 01:13:54 +0100
commitc1a65cba9c1b9a0ad72046dc73ab0e316b9cb7fe (patch)
treec03add53bede8d4e7ecaedf4e55aa889692b24fb /tests
parentiotests: Explicitly bequeath FDs in Python (diff)
downloadqemu-c1a65cba9c1b9a0ad72046dc73ab0e316b9cb7fe.tar.gz
qemu-c1a65cba9c1b9a0ad72046dc73ab0e316b9cb7fe.tar.xz
qemu-c1a65cba9c1b9a0ad72046dc73ab0e316b9cb7fe.zip
iotests: 'new' module replacement in 169
iotest 169 uses the 'new' module to add methods to a class. This module no longer exists in Python 3. Instead, we can use a lambda. Best of all, this works in 2.7 just as well. Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Cleber Rosa <crosa@redhat.com> Message-Id: <20181022135307.14398-8-mreitz@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/qemu-iotests/1693
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/qemu-iotests/169 b/tests/qemu-iotests/169
index 69850c4c67..527aebd0cb 100755
--- a/tests/qemu-iotests/169
+++ b/tests/qemu-iotests/169
@@ -23,7 +23,6 @@ import iotests
import time
import itertools
import operator
-import new
import re
from iotests import qemu_img
@@ -204,7 +203,7 @@ class TestDirtyBitmapMigration(iotests.QMPTestCase):
def inject_test_case(klass, name, method, *args, **kwargs):
mc = operator.methodcaller(method, *args, **kwargs)
- setattr(klass, 'test_' + method + name, new.instancemethod(mc, None, klass))
+ setattr(klass, 'test_' + method + name, lambda self: mc(self))
for cmb in list(itertools.product((True, False), repeat=4)):
name = ('_' if cmb[0] else '_not_') + 'persistent_'