Skip to content

Commit 1d37881

Browse files
committed
Avoid shadowing imported 'b' function.
1 parent 63db42c commit 1d37881

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_oauth.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -552,9 +552,9 @@ def test_to_url(self):
552552
self.assertEquals(exp.netloc, res.netloc)
553553
self.assertEquals(exp.path, res.path)
554554

555-
a = parse_qs(exp.query)
556-
b = parse_qs(res.query)
557-
self.assertEquals(a, b)
555+
exp_parsed = parse_qs(exp.query)
556+
res_parsed = parse_qs(res.query)
557+
self.assertEquals(exp_parsed, res_parsed)
558558

559559
def test_to_url_with_query(self):
560560
url = ("https://www.google.com/m8/feeds/contacts/default/full/"

0 commit comments

Comments
 (0)