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

pull/364/merge
Simon Willison 2019-01-13 14:23:44 -08:00
rodzic 4722acc73c
commit c3a78eb05c
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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