From e3c9a6729457cb802bba11644d27e1813ed8d4cd Mon Sep 17 00:00:00 2001 From: Emilio Talamante Lugo Date: Thu, 14 Mar 2019 00:48:51 -0700 Subject: [PATCH] Changed to .utils module for CI tests acceptance --- notebook/tests/selenium/test_shutdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/tests/selenium/test_shutdown.py b/notebook/tests/selenium/test_shutdown.py index 461c8150b..b43037009 100644 --- a/notebook/tests/selenium/test_shutdown.py +++ b/notebook/tests/selenium/test_shutdown.py @@ -1,5 +1,5 @@ """Tests shutdown of the Kernel.""" -from utils import wait_for_selector, wait_for_xpath +from .utils import wait_for_selector, wait_for_xpath def test_shutdown(notebook): notebook.edit_cell(content="print(21)")