app_client() fixture doesn't need to take **kwargs

This commit is contained in:
Simon Willison 2019-01-13 14:23:44 -08:00
commit c3a78eb05c

View file

@ -61,8 +61,8 @@ def make_app_client(
@pytest.fixture(scope="session")
def app_client(**kwargs):
yield from make_app_client(**kwargs)
def app_client():
yield from make_app_client()
@pytest.fixture(scope='session')