We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a3a2a0 commit b96c939Copy full SHA for b96c939
examples/simple/tests/test_handlers.py
@@ -2,7 +2,7 @@
2
3
4
@pytest.fixture
5
-def server_config(template_dir):
+def server_config(jp_template_dir):
6
return {
7
"ServerApp": {
8
"jpserver_extensions": {
@@ -12,7 +12,7 @@ def server_config(template_dir):
12
}
13
14
15
-async def test_handler_default(fetch):
+async def test_handler_default(jp_fetch):
16
r = await fetch(
17
'simple_ext1/default',
18
method='GET'
@@ -22,7 +22,7 @@ async def test_handler_default(fetch):
22
assert r.body.decode().index('Hello Simple 1 - I am the default...') > -1
23
24
25
-async def test_handler_template(fetch):
+async def test_handler_template(jp_fetch):
26
27
'simple_ext1/template1/test',
28
0 commit comments