File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ increases the likelihood of your issue being solved quickly. The few extra
11
11
steps listed below will help clarify problems you might be facing:
12
12
13
13
- Include a `minimal reproducible example `_ when possible.
14
- - Describe the expected behaviour and what actually happened including a full
14
+ - Describe the expected behavior and what actually happened including a full
15
15
trace-back in case of exceptions.
16
16
- Make sure to list details about your environment, such as your platform,
17
17
versions of pytest, pytest-flask and python release.
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ other headless browsers).
148
148
By default the server will start automatically whenever you reference
149
149
``live_server `` fixture in your tests. But starting live server imposes some
150
150
high costs on tests that need it when they may not be ready yet. To prevent
151
- that behaviour pass ``--no-start-live-server `` into your default options (for
151
+ that behavior pass ``--no-start-live-server `` into your default options (for
152
152
example, in your project’s ``pytest.ini `` file)::
153
153
154
154
[pytest]
@@ -290,15 +290,15 @@ Content negotiation
290
290
291
291
An important part of any :abbr: `REST ( REpresentational State Transfer ) `
292
292
service is content negotiation. It allows you to implement behaviour such as
293
- selecting a different serialization schemes for different media types.
293
+ selecting a different serialization scheme for different media types.
294
294
295
295
HTTP has provisions for several mechanisms for "content negotiation" - the
296
296
process of selecting the best representation for a given response
297
297
when there are multiple representations available.
298
298
299
299
-- :rfc: `2616#section-12 `. Fielding, et al.
300
300
301
- The most common way to select one of the multiple possible representation is
301
+ The most common way to select one of the multiple possible representations is
302
302
via ``Accept `` request header. The following series of ``accept_* `` fixtures
303
303
provides an easy way to test content negotiation in your application:
304
304
You can’t perform that action at this time.
0 commit comments