Skip to content

Commit 169103c

Browse files
committed
chore: Update tools file option in integration tests
1 parent daed3fd commit 169103c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/toolbox-langchain/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def toolbox_server(toolbox_version: str, tools_file_path: str) -> Generator[None
142142
os.chmod("toolbox", 0o700)
143143
# Run toolbox binary
144144
toolbox_server = subprocess.Popen(
145-
["./toolbox", "--tools_file", tools_file_path]
145+
["./toolbox", "--tools-file", tools_file_path]
146146
)
147147

148148
# Wait for server to start

packages/toolbox-llamaindex/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def toolbox_server(toolbox_version: str, tools_file_path: str) -> Generator[None
142142
os.chmod("toolbox", 0o700)
143143
# Run toolbox binary
144144
toolbox_server = subprocess.Popen(
145-
["./toolbox", "--tools_file", tools_file_path]
145+
["./toolbox", "--tools-file", tools_file_path]
146146
)
147147

148148
# Wait for server to start

0 commit comments

Comments
 (0)