Skip to content
Snippets Groups Projects
Unverified Commit 9d50b280 authored by Andre LaBranche's avatar Andre LaBranche Committed by GitHub
Browse files

Use correct variable name (COUNT --> count)

... and demonstrate the sort of embarrassment one might expect when making changes without the use of a local python interpreter.
parent 12080b76
No related branches found
Tags PyKerberos-1.1
No related merge requests found
......@@ -157,10 +157,10 @@ def test_leaks_client():
# We're testing for memory leaks, so use xrange instead of range in python2
if sys.version_info[0] > 2:
for _ in range(COUNT):
for _ in range(count):
client_init()
else:
for _ in xrange(COUNT):
for _ in xrange(count):
client_init()
# Because I'm not entirely certain that python's gc guaranty's timeliness
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment