Skip to content

Commit b9f5c6b

Browse files
authored
Merge pull request #344 from nikochiko/patch-1
Fix typo: Resposnes -> Responses
2 parents 8c2db9f + 06df894 commit b9f5c6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Matching Request Parameters
134134

135135
When adding responses for endpoints that are sent request data you can add
136136
matchers to ensure your code is sending the right parameters and provide
137-
different responses based on the request body contents. Resposnes provides
137+
different responses based on the request body contents. Responses provides
138138
matchers for JSON and URLencoded request bodies and you can supply your own for
139139
other formats.
140140

@@ -150,7 +150,7 @@ other formats.
150150
url='http://calc.com/sum',
151151
body=4,
152152
match=[
153-
resposnes.urlencoded_params_matcher({"left": 1, "right": 3})
153+
responses.urlencoded_params_matcher({"left": 1, "right": 3})
154154
]
155155
)
156156
requests.post("http://calc.com/sum", data={"left": 1, "right": 3})

0 commit comments

Comments
 (0)