From: Cory Benfield Date: Thu, 16 Feb 2012 20:42:05 +0000 (+0000) Subject: Correct unfortunate typo. X-Git-Tag: v0.10.3~14^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=544ebf402f50cd7afbbe0e04b553a64872111b6c;p=services%2Fpython-requests.git Correct unfortunate typo. --- diff --git a/tests/test_requests.py b/tests/test_requests.py index 196e560..e75dea3 100755 --- a/tests/test_requests.py +++ b/tests/test_requests.py @@ -813,9 +813,9 @@ class RequestsTestSuite(TestSetup, unittest.TestCase): r = requests.get(httpbin('post'), auth=('a', 'b'), data='\xff') - def test_useful_exception_for_invalid_schema(self): + def test_useful_exception_for_invalid_scheme(self): - # If we pass a legitimate URL with a schema not supported + # If we pass a legitimate URL with a scheme not supported # by requests, we should fail. self.assertRaises( ValueError,