ruff format fix

🤖 Generated with Claude Code

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
William Easton 2026-04-14 10:32:00 -05:00
commit b3699ace91

View file

@ -838,9 +838,7 @@ class TestMalformedURITemplates:
def test_expand_uri_template_with_hyphens(self):
"""expand_uri_template maps underscored params to hyphenated placeholders."""
result = expand_uri_template(
"data://{user-id}/profile", {"user_id": "alice"}
)
result = expand_uri_template("data://{user-id}/profile", {"user_id": "alice"})
assert result == "data://alice/profile"
def test_query_param_does_not_clobber_path_param(self):