Set default path in EN/DE tests.

This commit is contained in:
Matthew Honnibal 2016-10-17 01:52:49 +02:00
parent cd71b6b0a9
commit 0cf4aff470

View File

@ -7,11 +7,11 @@ from ..de import German
@pytest.fixture(scope="session")
def EN():
return English(path=False)
return English()
@pytest.fixture(scope="session")
def DE():
return German(path=False)
return German()
def pytest_addoption(parser):