Skip to content

Commit 7302396

Browse files
committed
Use correct fixture names
1 parent 4d7fc23 commit 7302396

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_eventlog.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@
1111

1212

1313
@pytest.fixture
14-
def eventlog_sink(configurable_serverapp):
14+
def eventlog_sink(jp_configurable_serverapp):
1515
"""Return eventlog and sink objects"""
1616
sink = io.StringIO()
1717
handler = logging.StreamHandler(sink)
1818

1919
cfg = Config()
2020
cfg.EventLog.handlers = [handler]
21-
serverapp = configurable_serverapp(config=cfg)
21+
serverapp = jp_configurable_serverapp(config=cfg)
2222
yield serverapp, sink
2323

2424

2525
@pytest.mark.parametrize('path, name', dirs)
26-
async def test_eventlog_list_notebooks(eventlog_sink, fetch, contents, path, name):
26+
async def test_eventlog_list_notebooks(eventlog_sink, jp_fetch, contents, path, name):
2727
schema, version = (eventlogging_schema_fqn('contentsmanager-actions'), 1)
2828
serverapp, sink = eventlog_sink
2929
serverapp.eventlog.allowed_schemas = [schema]
3030

31-
r = await fetch(
31+
r = await jp_fetch(
3232
'api',
3333
'contents',
3434
path,

0 commit comments

Comments
 (0)