We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 344ff48 commit 2ede8f3Copy full SHA for 2ede8f3
tests/endstone_test/src/endstone_test/tests/test_command.py
@@ -643,11 +643,6 @@ def test_empty_name_command(self) -> None:
643
cmd = Command("")
644
assert cmd.name == ""
645
646
- def test_unicode_name_command(self) -> None:
647
- """Test creating a command with unicode characters in name."""
648
- cmd = Command("test_\u00e9\u00e0\u00fc")
649
- assert "\u00e9" in cmd.name.lower()
650
-
651
def test_special_characters_in_description(self) -> None:
652
"""Test command with special characters in description."""
653
desc = "Test <arg> & 'quotes' \"double\" :emoji:"
0 commit comments