style(test): fix trailing whitespace in dedup tests

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Zamil Majdy
2026-03-28 03:18:11 +00:00
parent 97b5fb89f6
commit 2e69220d55

View File

@@ -773,9 +773,9 @@ async def test_unicode_in_block_names_and_defaults():
import re
for name in names:
assert re.fullmatch(
r"[a-zA-Z0-9_-]+", name
), f"Invalid chars in tool name: {name!r}"
assert re.fullmatch(r"[a-zA-Z0-9_-]+", name), (
f"Invalid chars in tool name: {name!r}"
)
def test_disambiguate_unicode_in_defaults_description():
@@ -1107,4 +1107,3 @@ def test_disambiguate_preserves_non_duplicate_hardcoded_defaults_cleanup():
assert tools[0]["function"]["name"] == "unique_a"
assert tools[1]["function"]["name"] == "unique_b"