From c296571aa889fc977e02c80cc072a72c396e542e Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:29:33 -0400 Subject: [PATCH] spelling: overridden Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- testing/test_config.py | 2 +- testing/test_doctest.py | 6 +++--- testing/test_legacypath.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/testing/test_config.py b/testing/test_config.py index 147c2cb85..da2492ca3 100644 --- a/testing/test_config.py +++ b/testing/test_config.py @@ -1740,7 +1740,7 @@ class TestOverrideIniArgs: ) pytester.makepyfile( r""" - def test_overriden(pytestconfig): + def test_overridden(pytestconfig): config_paths = pytestconfig.getini("paths") print(config_paths) for cpf in config_paths: diff --git a/testing/test_doctest.py b/testing/test_doctest.py index 58fce244f..c2e831505 100644 --- a/testing/test_doctest.py +++ b/testing/test_doctest.py @@ -396,7 +396,7 @@ class TestDoctests: ] ) - def test_doctest_no_linedata_on_overriden_property(self, pytester: Pytester): + def test_doctest_no_linedata_on_overridden_property(self, pytester: Pytester): pytester.makepyfile( """ class Sample(object): @@ -414,7 +414,7 @@ class TestDoctests: result.stdout.fnmatch_lines( [ "*= FAILURES =*", - "*_ [[]doctest[]] test_doctest_no_linedata_on_overriden_property.Sample.some_property _*", + "*_ [[]doctest[]] test_doctest_no_linedata_on_overridden_property.Sample.some_property _*", "EXAMPLE LOCATION UNKNOWN, not showing all tests of that example", "[?][?][?] >>> Sample().some_property", "Expected:", @@ -422,7 +422,7 @@ class TestDoctests: "Got:", " 'something'", "", - "*/test_doctest_no_linedata_on_overriden_property.py:None: DocTestFailure", + "*/test_doctest_no_linedata_on_overridden_property.py:None: DocTestFailure", "*= 1 failed in *", ] ) diff --git a/testing/test_legacypath.py b/testing/test_legacypath.py index 49e620c11..ad4e22e46 100644 --- a/testing/test_legacypath.py +++ b/testing/test_legacypath.py @@ -155,7 +155,7 @@ def test_override_ini_paths(pytester: pytest.Pytester) -> None: ) pytester.makepyfile( r""" - def test_overriden(pytestconfig): + def test_overridden(pytestconfig): config_paths = pytestconfig.getini("paths") print(config_paths) for cpf in config_paths: