summaryrefslogtreecommitdiff
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2017-12-08 09:04:42 -0200
committerGitHub <noreply@github.com>2017-12-08 09:04:42 -0200
commit1c5b887dfd7ecfa7cc7ac315ebf7e57e3ce5a677 (patch)
treeec2e4767287bb9aa6e106ef40bc43e78b3f21598 /CHANGELOG.rst
parent88f2cc9b641bca41818918ef853b7d10dca6bcaa (diff)
downloadpytest-1c5b887dfd7ecfa7cc7ac315ebf7e57e3ce5a677.tar.gz
Fix spelling of pytest in CHANGELOG
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index eabd28be1..5c2ed1759 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -157,10 +157,10 @@ Bug Fixes
<https://github.com/pytest-dev/pytest/issues/2124>`_)
- If an exception happens while loading a plugin, pytest no longer hides the
- original traceback. In python2 it will show the original traceback with a new
- message that explains in which plugin. In python3 it will show 2 canonized
+ original traceback. In Python 2 it will show the original traceback with a new
+ message that explains in which plugin. In Python 3 it will show 2 canonized
exceptions, the original exception while loading the plugin in addition to an
- exception that PyTest throws about loading a plugin. (`#2491
+ exception that pytest throws about loading a plugin. (`#2491
<https://github.com/pytest-dev/pytest/issues/2491>`_)
- ``capsys`` and ``capfd`` can now be used by other fixtures. (`#2709