Skip to content

Commit

Permalink
Reword doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Couper committed May 15, 2012
1 parent ae01287 commit 37b01f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pretenders/http/tests/integration/test_http.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_method_matching():
assert_equals(200, test_client._mock.get(url="/test_get").status) assert_equals(200, test_client._mock.get(url="/test_get").status)
assert_equals(405, test_client._mock.post(url="/test_get").status) assert_equals(405, test_client._mock.post(url="/test_get").status)


# Only POST works when POTS matched # Only POST works when POST matched
assert_equals(201, test_client._mock.post(url="/test_post").status) assert_equals(201, test_client._mock.post(url="/test_post").status)
assert_equals(405, test_client._mock.get(url="/test_post").status) assert_equals(405, test_client._mock.get(url="/test_post").status)


Expand Down

0 comments on commit 37b01f9

Please sign in to comment.