Fix path in assertion

This commit is contained in:
Nuno Campos
2025-02-17 11:47:38 -08:00
parent 5a8624fdfd
commit d03ead2f43
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ services:
build:
context: .
additional_contexts:
- cli_1: /Users/nuno/dev/langgraph/libs/cli
- cli_1: {str(pathlib.Path(__file__).parent.parent.parent.parent.absolute())}
dockerfile_inline: |
FROM langchain/langgraph-api:3.11
# -- Adding local package . --
+1 -1
View File
@@ -244,7 +244,7 @@ WORKDIR /deps/__outer_unit_tests/unit_tests\
"""
assert clean_empty_lines(actual_docker_stdin) == expected_docker_stdin
assert additional_contexts == {
"__outer_tests": "/Users/nuno/dev/langgraph/libs/cli/tests"
"__outer_tests": str(pathlib.Path(__file__).parent.parent.absolute()),
}