From 5453b88f8fa97e5ff0b7e093802eb6a8b2d90a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 26 Jul 2016 15:24:29 +0300 Subject: [PATCH] Spelling fixes --- requests/models.py | 2 +- tests/test_testserver.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requests/models.py b/requests/models.py index adbcf3c0..ba70e3a6 100644 --- a/requests/models.py +++ b/requests/models.py @@ -662,7 +662,7 @@ class Response(object): chunk_size must be of type int or None. A value of None will function differently depending on the value of `stream`. stream=True will read data as it arrives in whatever size the - chunks are recieved. If stream=False, data is returned as + chunks are received. If stream=False, data is returned as a single chunk. If decode_unicode is True, content will be decoded using the best diff --git a/tests/test_testserver.py b/tests/test_testserver.py index b7c3fed7..0998d9a4 100644 --- a/tests/test_testserver.py +++ b/tests/test_testserver.py @@ -13,7 +13,7 @@ class TestTestServer: def test_basic(self): """messages are sent and received properly""" - question = b"sucess?" + question = b"success?" answer = b"yeah, success" def handler(sock):