Skip to content

Commit 14622f3

Browse files
committed
[gemini-feedback]- test: assert list order without sorted() to verify alphabetical contract
1 parent b1e1677 commit 14622f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unittests/cli/utils/test_agent_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ def __init__(self):
10341034
loader = AgentLoader(str(temp_path))
10351035
agents = loader.list_agents()
10361036

1037-
assert sorted(agents) == ["module_agent", "valid_agent", "yaml_agent"]
1037+
assert agents == ["module_agent", "valid_agent", "yaml_agent"]
10381038
assert "random_folder" not in agents
10391039
assert "data" not in agents
10401040
assert "tmp" not in agents

0 commit comments

Comments
 (0)