Skip to content

Commit

Permalink
Less ambiguous variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
deanishe committed May 20, 2020
1 parent 9d438aa commit 041a988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_util_lockfile.py
Expand Up @@ -102,7 +102,7 @@ def test_concurrent_access(paths):
assert not os.path.exists(paths.lockfile)

with open(paths.testfile) as fp:
lines = [l.strip() for l in fp.readlines()]
lines = [line.strip() for line in fp.readlines()]

for line in lines:
assert len(set(line)) == 1
Expand Down

0 comments on commit 041a988

Please sign in to comment.