summaryrefslogtreecommitdiff
path: root/doc/en/getting-started.rst
diff options
context:
space:
mode:
authorBruno Oliveira <bruno@esss.co>2019-08-30 12:43:47 -0300
committerBruno Oliveira <bruno@esss.co>2019-08-30 12:43:47 -0300
commite56544cb587e8f288bea12aff01355b31aec92f7 (patch)
tree20b3a54dd5b0843276837ce6838ce77e62cd2afa /doc/en/getting-started.rst
parentf9cc704b1a8cf475a02051b747b78897b13a83f7 (diff)
downloadpytest-e56544cb587e8f288bea12aff01355b31aec92f7.tar.gz
Preparing release version 5.1.2
Diffstat (limited to 'doc/en/getting-started.rst')
-rw-r--r--doc/en/getting-started.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/en/getting-started.rst b/doc/en/getting-started.rst
index 38a361818..455e93622 100644
--- a/doc/en/getting-started.rst
+++ b/doc/en/getting-started.rst
@@ -69,7 +69,7 @@ That’s it. You can now execute the test function:
E + where 4 = func(3)
test_sample.py:6: AssertionError
- ============================ 1 failed in 0.02s =============================
+ ============================ 1 failed in 0.12s =============================
This test returns a failure report because ``func(3)`` does not return ``5``.
@@ -108,7 +108,7 @@ Execute the test function with “quiet” reporting mode:
$ pytest -q test_sysexit.py
. [100%]
- 1 passed in 0.00s
+ 1 passed in 0.01s
Group multiple tests in a class
--------------------------------------------------------------