From d420f32b21aa937bdb04b063b8a6cfa573b8c418 Mon Sep 17 00:00:00 2001
From: ulif <uli@gnufix.de>
Date: Tue, 28 Jul 2015 23:01:32 +0200
Subject: [PATCH] Use w_list instead of wlist.

It is better readable.
---
 tests/test_wordlist.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test_wordlist.py b/tests/test_wordlist.py
index 0e275c3..d1f5957 100644
--- a/tests/test_wordlist.py
+++ b/tests/test_wordlist.py
@@ -197,5 +197,5 @@ class TestWordList(object):
         # we can create `WordList` objects.
         in_file = tmpdir.mkdir("work").join("mywordlist")
         in_file.write("foo\n")
-        wlist = WordList(str(in_file))
-        assert wlist is not None
+        w_list = WordList(str(in_file))
+        assert w_list is not None
-- 
GitLab