Rebase onto upstream (a4d95fd) #12

Closed
wylab wants to merge 144 commits from rebase-onto-upstream into main
Showing only changes of commit ed64ba04e8 - Show all commits
+2 -2
View File
@@ -97,5 +97,5 @@ async def test_multiple_beta_flags_joined():
call_args = mock_client.post.call_args call_args = mock_client.post.call_args
headers = call_args[1]["headers"] headers = call_args[1]["headers"]
assert "anthropic-beta" in headers assert "anthropic-beta" in headers
# Should be sorted and joined # Should be sorted alphabetically and joined with comma
assert headers["anthropic-beta"] in ["flag-a,flag-b", "flag-b,flag-a"] assert headers["anthropic-beta"] == "flag-a,flag-b"