Skip to content

Commit

Permalink
Merge pull request #3444 from nytakahashi/fix/typo_on_httputil_test
Browse files Browse the repository at this point in the history
Fix typo in test variable name (requets -> request)
  • Loading branch information
bdarnell authored Nov 21, 2024
2 parents 1c3335d + 259a380 commit 7bcc02a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tornado/test/httputil_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,8 @@ def test_default_constructor(self):
HTTPServerRequest(uri="/")

def test_body_is_a_byte_string(self):
requets = HTTPServerRequest(uri="/")
self.assertIsInstance(requets.body, bytes)
request = HTTPServerRequest(uri="/")
self.assertIsInstance(request.body, bytes)

def test_repr_does_not_contain_headers(self):
request = HTTPServerRequest(
Expand Down

0 comments on commit 7bcc02a

Please sign in to comment.