We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a1d33 commit d568f47Copy full SHA for d568f47
1 file changed
docs/user/quickstart.rst
@@ -271,7 +271,9 @@ use the same key::
271
},
272
...
273
}
274
- >>> r1.text == r2.text
+ >>> # httpbin may embed non-deterministic metadata,
275
+ >>> # so we only compare our submitted data here.
276
+ >>> r1.json()['form'] == r2.json()['form']
277
True
278
279
There are times that you may want to send data that is not form-encoded. If
0 commit comments