From 081175621f8533fe9d9d1fbf2c36f71d754f933b Mon Sep 17 00:00:00 2001 From: Ashley Sommer Date: Mon, 19 Aug 2019 12:38:01 +1000 Subject: remove unneeded additional collect_parameters assertion in the signature_base_string test. Fixes python 2.7 test failure. --- tests/oauth1/rfc5849/test_signatures.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/oauth1/rfc5849/test_signatures.py b/tests/oauth1/rfc5849/test_signatures.py index 12e9466..5ff0989 100644 --- a/tests/oauth1/rfc5849/test_signatures.py +++ b/tests/oauth1/rfc5849/test_signatures.py @@ -109,7 +109,6 @@ class SignatureTests(TestCase): base_string_url = base_string_uri(self.base_string_url.decode('utf-8')) base_string_url = base_string_url.encode('utf-8') querystring = self.base_string_url.split(b'?', 1)[1] - self.assertRaises(ValueError, collect_parameters, querystring) query_params = collect_parameters(querystring.decode('utf-8'), body=self.body) normalized_encoded_query_params = sorted( -- cgit v1.2.1