diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index 3755d26239..cef9e088d8 100644 --- a/docs/user/quickstart.rst +++ b/docs/user/quickstart.rst @@ -271,7 +271,9 @@ use the same key:: }, ... } - >>> r1.text == r2.text + >>> # httpbin may embed non-deterministic metadata, + >>> # so we only compare our submitted data here. + >>> r1.json()['form'] == r2.json()['form'] True There are times that you may want to send data that is not form-encoded. If