aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/cavp.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-10-10 11:14:25 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-10-10 11:14:25 +0300
commit8e52a404f9a99f93d57f8600b20d92519be66181 (patch)
tree19ac2ad0d36cdc139dbac3551b88c42da883e368 /test/cavp.py
parentREADME updates (diff)
downloadaes-tools-8e52a404f9a99f93d57f8600b20d92519be66181.tar.gz
aes-tools-8e52a404f9a99f93d57f8600b20d92519be66181.zip
test: fix Pylint warnings
Diffstat (limited to 'test/cavp.py')
-rw-r--r--test/cavp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cavp.py b/test/cavp.py
index a08c94b..b8513e8 100644
--- a/test/cavp.py
+++ b/test/cavp.py
@@ -180,8 +180,8 @@ class TestArchive(zipfile.ZipFile):
def enum_test_files(self):
with TemporaryDirectory() as tmp_dir:
- for fp in self.namelist():
- yield TestFile(self.extract(fp, tmp_dir))
+ for path in self.namelist():
+ yield TestFile(self.extract(path, tmp_dir))
def _build_default_log_path():
return datetime.now().strftime('{}_%Y-%m-%d_%H-%M-%S.log').format(