From 3216707e1249d2b86a8f8d7e15262df335b13adc Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Thu, 7 Jan 2021 18:36:59 +0100 Subject: [PATCH] tests/pbkdf2: fix flake8 issue E741: ambiguous variable name E741: ambiguous variable name --- tests/pbkdf2/tests/test_base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pbkdf2/tests/test_base.py b/tests/pbkdf2/tests/test_base.py index c6a639929e..b7ceced0f4 100644 --- a/tests/pbkdf2/tests/test_base.py +++ b/tests/pbkdf2/tests/test_base.py @@ -25,10 +25,10 @@ def test(vectors, child): assert idx == 0 return idx - def _safe_sendline(l): - assert len(l) < MAX_LINE + def _safe_sendline(line): + assert len(line) < MAX_LINE _safe_expect_exact('{ready}') - child.sendline(l) + child.sendline(line) for passwd, salt, iters, key in vectors: _safe_sendline(passwd)