summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2018-11-09 01:44:53 +0100
committerDaniel Hahler <git@thequod.de>2018-11-09 02:03:44 +0100
commit4a74d455dec43be8f73d670a2e850b0ed21c8f40 (patch)
tree78cac9038178b18e4216256a98ca337bc6773fa4
parentc1bde8e0a2de06bdcdf97687dfdc271ac2abd8eb (diff)
downloadpytest-4a74d455dec43be8f73d670a2e850b0ed21c8f40.tar.gz
minor: typos
-rw-r--r--testing/logging/test_fixture.py2
-rw-r--r--testing/test_config.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/testing/logging/test_fixture.py b/testing/logging/test_fixture.py
index 7a815cf12..ff772e7ec 100644
--- a/testing/logging/test_fixture.py
+++ b/testing/logging/test_fixture.py
@@ -136,5 +136,5 @@ def test_caplog_captures_for_all_stages(caplog, logging_during_setup_and_teardow
assert [x.message for x in caplog.get_records("setup")] == ["a_setup_log"]
- # This reachers into private API, don't use this type of thing in real tests!
+ # This reaches into private API, don't use this type of thing in real tests!
assert set(caplog._item.catch_log_handlers.keys()) == {"setup", "call"}
diff --git a/testing/test_config.py b/testing/test_config.py
index 82466df1f..1be266387 100644
--- a/testing/test_config.py
+++ b/testing/test_config.py
@@ -874,7 +874,7 @@ class TestRootdir(object):
assert inifile == inifile
@pytest.mark.parametrize("name", "setup.cfg tox.ini".split())
- def test_pytestini_overides_empty_other(self, tmpdir, name):
+ def test_pytestini_overrides_empty_other(self, tmpdir, name):
inifile = tmpdir.ensure("pytest.ini")
a = tmpdir.mkdir("a")
a.ensure(name)