aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_netstring.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_netstring.py')
-rw-r--r--test/test_netstring.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_netstring.py b/test/test_netstring.py
index 3c56acd9..5c4f775a 100644
--- a/test/test_netstring.py
+++ b/test/test_netstring.py
@@ -9,10 +9,10 @@ class uNetstring(libpry.AutoTree):
self.encoded_data = "9:Netstring,6:module,2:by,4:Will,7:McGugan,"
def test_header(self):
- tests = [ ("netstring", "9:"),
+ t = [ ("netstring", "9:"),
("Will McGugan", "12:"),
("", "0:") ]
- for test, result in tests:
+ for test, result in t:
assert netstring.header(test) == result
def test_file_encoder(self):