Browse Source

Remove unneccessary arg in client fixture

pull/2131/head
wgwz 8 years ago
parent
commit
46c1383919
  1. 2
      examples/patterns/largerapp/tests/test_largerapp.py

2
examples/patterns/largerapp/tests/test_largerapp.py

@ -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

Loading…
Cancel
Save