Change from "A xfail" to "An xfail"
This commit is contained in:
Garrett Thomas 2020-07-20 18:16:13 +02:00 committed by GitHub
parent 41d211c24a
commit 3ed05ee4d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ otherwise pytest should skip running the test altogether. Common examples are sk
windows-only tests on non-windows platforms, or skipping tests that depend on an external
resource which is not available at the moment (for example a database).
A **xfail** means that you expect a test to fail for some reason.
An **xfail** means that you expect a test to fail for some reason.
A common example is a test for a feature not yet implemented, or a bug not yet fixed.
When a test passes despite being expected to fail (marked with ``pytest.mark.xfail``),
it's an **xpass** and will be reported in the test summary.