diff --git a/libs/langgraph/tests/test_runtime.py b/libs/langgraph/tests/test_runtime.py index 2ac9eaaf9..536853109 100644 --- a/libs/langgraph/tests/test_runtime.py +++ b/libs/langgraph/tests/test_runtime.py @@ -72,7 +72,7 @@ def test_merge_runtime() -> None: runtime3 = Runtime(context=None) assert runtime1.merge(runtime2).context.api_key == "def" - # override only appies to non-falsy values + # override only applies to non-falsy values assert runtime1.merge(runtime3).context.api_key == "abc" # type: ignore