Skip to content

Commit 0db7e37

Browse files
committed
fix test import
1 parent 06a1f5d commit 0db7e37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_extension.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# for Coverage
22
from mock import patch, MagicMock
3-
from jupyterlab_iframe.extension import load_jupyter_server_extension, IFrameHandler, IFrameProxyHandler
3+
from jupyterlab_iframe.extension import load_jupyter_server_extension, IFrameHandler, ProxyHandler, ProxyWSHandler
44

55

66
class TestExtension:
@@ -27,7 +27,7 @@ def test_proxy_handler(self):
2727
app = tornado.web.Application()
2828
m = MagicMock()
2929

30-
h = IFrameProxyHandler(app, m)
30+
h = ProxyHandler(app, m)
3131
h._transforms = []
3232

3333
with patch('requests.get') as m2:

0 commit comments

Comments
 (0)