From a0f0258eeea538a12450977584f8d3dca8927ba7 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Mon, 12 Jun 2017 01:27:11 +0800 Subject: [PATCH] Fix a typo: paramters -> parameters --- tests/test_requests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_requests.py b/tests/test_requests.py index 194a03b3..cfafc6e4 100644 --- a/tests/test_requests.py +++ b/tests/test_requests.py @@ -2369,7 +2369,7 @@ class TestPreparingURLs(object): ) def test_parameters_for_nonstandard_schemes(self, input, params, expected): """ - Setting paramters for nonstandard schemes is allowed if those schemes + Setting parameters for nonstandard schemes is allowed if those schemes begin with "http", and is forbidden otherwise. """ r = requests.Request('GET', url=input, params=params)