Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-08-22 13:05:28 +00:00
parent 85180f5054
commit 6fee6811a0
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env python
"""Verify that the reserved keyword tests work correctly."""
import sys
sys.path.insert(0, 'libs/prebuilt')
from tests.test_react_agent import test_tool_node_inject_state_reserved_keyword
print("Running test_tool_node_inject_state_reserved_keyword...")
try:
test_tool_node_inject_state_reserved_keyword()
print("✓ State reserved keyword test passed!")
except Exception as e:
print(f"✗ State reserved keyword test failed: {e}")
sys.exit(1)
print("\nAll existing tests passed!")