Remove unneccessary arg in client fixture

This commit is contained in:
wgwz 2016-12-31 12:37:39 -05:00
parent cc9b3c60da
commit 750d01b30b

View file

@ -2,7 +2,7 @@ from yourapplication import app
import pytest
@pytest.fixture
def client(request):
def client():
app.config['TESTING'] = True
client = app.test_client()
return client