From: Nir Soffer Date: Fri, 28 Aug 2020 23:21:52 +0000 (+0300) Subject: qemu-iotests: Simplify FilePath __init__ X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7cc002a06cde0e4df6cb4d546e4b21bb6433fcc3;p=qemu.git qemu-iotests: Simplify FilePath __init__ Use list comprehension instead of append loop. Signed-off-by: Nir Soffer Reviewed-by: Max Reitz Message-Id: <20200828232152.205833-6-nsoffer@redhat.com> Signed-off-by: Max Reitz --- diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index 1799338f8b..91e4a57126 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -470,9 +470,8 @@ class FilePath: """ def __init__(self, *names, base_dir=test_dir): - self.paths = [] - for name in names: - self.paths.append(os.path.join(base_dir, file_pattern(name))) + self.paths = [os.path.join(base_dir, file_pattern(name)) + for name in names] def __enter__(self): if len(self.paths) == 1: