chore: fix e2e (#8768)

This commit is contained in:
Shubham Naik
2026-01-15 13:16:03 -08:00
committed by Sarah Wooders
parent 97f7e95d1d
commit e877418443

View File

@@ -300,7 +300,7 @@ def test_agent_tags(client: Letta, clear_tables):
# Test getting all tags
all_tags = client.tags.list()
expected_tags = ["agent1", "agent2", "agent3", "development", "production", "test"]
expected_tags = ["agent1", "agent2", "agent3", "origin:letta-chat", "development", "production", "test", "view:letta-chat"]
print("ALL TAGS", all_tags)
print("EXPECTED TAGS", expected_tags)
assert sorted(all_tags) == expected_tags