From 163d14f812842f7fa4dd5cfca6ce8bfd77ff3e25 Mon Sep 17 00:00:00 2001 From: Sydney Runkle Date: Tue, 29 Jul 2025 14:59:14 -0400 Subject: [PATCH] typo --- libs/langgraph/tests/test_runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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