From b87b318225eca87c260b03b952fe77867a4bd250 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Wed, 25 Jan 2023 10:58:56 +0800 Subject: [PATCH] Fix typos Found via `codespell -S .env,node_modules -L astroid` --- Makefile | 2 +- pytest_splinter/plugin.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c5e1231..3459035 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,6 @@ test: develop coveralls: coverage coveralls -# clean the development envrironment +# clean the development environment clean: -rm -rf .env diff --git a/pytest_splinter/plugin.py b/pytest_splinter/plugin.py index 88fd003..ac015c1 100644 --- a/pytest_splinter/plugin.py +++ b/pytest_splinter/plugin.py @@ -636,7 +636,7 @@ def _take_screenshot_on_failure(): @pytest.hookimpl(hookwrapper=True) def pytest_runtest_makereport(item, call): - """Assign the report to the item for futher usage.""" + """Assign the report to the item for further usage.""" outcome = yield rep = outcome.get_result() if rep.outcome == "failed":