i2p: Rename test fixtures to avoid a minor warning

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
This commit is contained in:
Sunil Mohan Adapa 2019-05-02 13:19:07 -07:00 committed by Joseph Nuthalapati
parent 717c3b39e9
commit 532a450ef7
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35
2 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ TUNNEL_CONF_PATH = DATA_DIR / 'i2ptunnel.config'
TUNNEL_HTTP_NAME = 'I2P HTTP Proxy'
@pytest.fixture
def editor():
@pytest.fixture(name='editor')
def fixture_editor():
"""Setup editor for each test."""
return TunnelEditor(str(TUNNEL_CONF_PATH))

View File

@ -26,8 +26,8 @@ from plinth.modules.i2p.tests import DATA_DIR
ROUTER_CONF_PATH = str(DATA_DIR / 'router.config')
@pytest.fixture
def editor():
@pytest.fixture(name='editor')
def fixture_editor():
"""Return editor instance object for each test."""
return RouterEditor(ROUTER_CONF_PATH)