Skip to content

Commit c77d89a

Browse files
committed
Use updated jupyter notebook tool ID
1 parent fa0bbbc commit c77d89a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_data_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from nova.galaxy.connection import Connection
99
from nova.galaxy.tool import Tool
1010

11-
TEST_INT_TOOL_ID = "interactive_tool_generic_output"
11+
TEST_INT_TOOL_ID = "interactive_tool_jupyter_notebook"
1212

1313

1414
def test_no_persist_store(nova_instance: Connection, galaxy_instance: GalaxyInstance) -> None:

tests/test_run_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from nova.galaxy.tool import Tool
1313

1414
TEST_TOOL_ID = "neutrons_remote_command"
15-
TEST_INT_TOOL_ID = "interactive_tool_generic_output"
15+
TEST_INT_TOOL_ID = "interactive_tool_jupyter_notebook"
1616
# If test fails, these files may be moved or no longer exists.
1717
REMOTE_FILE_PATH = "/HFIR/CG3/shared/Cycle509/IntermediateConfigNiQ_RC509.txt"
1818
REMOTE_FILE_PATH_2 = "/HFIR/CG3/shared/Cycle509/Long6AConfigURBj_RC509.txt"

tests/test_tool_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __init__(self) -> None:
4747

4848
def prepare_tool(self) -> Tuple[Tool, Optional[Parameters]]:
4949
tool_params = None
50-
tool = Tool(id="interactive_tool_generic_output")
50+
tool = Tool(id="interactive_tool_jupyter_notebook")
5151
return tool, tool_params
5252

5353
def get_results(self, tool: Tool) -> bytes:

0 commit comments

Comments
 (0)