Apply suggestions from code review

Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Willem Jiang
2026-04-26 11:12:42 +08:00
committed by GitHub
parent a55de566b9
commit d9f7f658be
5 changed files with 12 additions and 5 deletions
+2 -1
View File
@@ -45,7 +45,8 @@ class TestGetThreadId:
def test_returns_none_when_get_config_raises_runtime_error(self):
runtime = SimpleNamespace(context=None, config={})
assert get_thread_id(runtime) is None
with patch("langgraph.config.get_config", side_effect=RuntimeError):
assert get_thread_id(runtime) is None
def test_handles_object_without_context_or_config(self):
runtime = SimpleNamespace()