From 3ed05ee4d6d58cd656a96ac9ae10cec322ea36e2 Mon Sep 17 00:00:00 2001 From: Garrett Thomas <garrettcarrollthomas@gmail.com> Date: Mon, 20 Jul 2020 18:16:13 +0200 Subject: [PATCH] Fix typo Change from "A xfail" to "An xfail" --- doc/en/skipping.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/skipping.rst b/doc/en/skipping.rst index c4e7d4a0a..5c67d77a7 100644 --- a/doc/en/skipping.rst +++ b/doc/en/skipping.rst @@ -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.