diff options
author | Ross <rrhodes@users.noreply.github.com> | 2020-03-15 12:24:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 12:24:23 (GMT) |
commit | 61ac612e78e4f2625977406fb6f366e0a644673a (patch) | |
tree | 83a14943941d3d3e1b9394045655c656947e523a /Lib/test/test_httplib.py | |
parent | 90235810ec28ca954bbf4b61a5ae5df7a00db409 (diff) | |
download | cpython-61ac612e78e4f2625977406fb6f366e0a644673a.zip cpython-61ac612e78e4f2625977406fb6f366e0a644673a.tar.gz cpython-61ac612e78e4f2625977406fb6f366e0a644673a.tar.bz2 |
bpo-39507: Add HTTP status 418 "I'm a Teapot" (GH-18291)
Diffstat (limited to 'Lib/test/test_httplib.py')
-rw-r--r-- | Lib/test/test_httplib.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 7f4decc..77d4335 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -1433,6 +1433,7 @@ class OfflineTest(TestCase): 'UNSUPPORTED_MEDIA_TYPE', 'REQUESTED_RANGE_NOT_SATISFIABLE', 'EXPECTATION_FAILED', + 'IM_A_TEAPOT', 'MISDIRECTED_REQUEST', 'UNPROCESSABLE_ENTITY', 'LOCKED', |