update flake8-pytest-style-plugin

This commit is contained in:
Kenneth Kehl
2024-07-15 08:07:18 -07:00
parent 437f8ca400
commit 8489fb9e61
17 changed files with 232 additions and 232 deletions

View File

@@ -68,7 +68,7 @@ def login_for_end_to_end_testing(browser):
context.storage_state(path=auth_state_path)
@pytest.fixture()
@pytest.fixture
def end_to_end_authenticated_context(browser):
# Create and load a previously authenticated context for Playwright E2E
# tests.
@@ -82,13 +82,13 @@ def end_to_end_authenticated_context(browser):
return context
@pytest.fixture()
@pytest.fixture
def end_to_end_context(browser):
context = browser.new_context()
return context
@pytest.fixture()
@pytest.fixture
def authenticated_page(end_to_end_context):
# Open a new page and go to the site.
page = end_to_end_context.new_page()