[Scummvm-git-logs] scummvm master -> e1804df2037a4eae003dd47b7dfd209be5be87dc
sev-
sev at scummvm.org
Sun Oct 31 19:52:03 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
e1804df203 DEVTOOLS: COMPANION: Fix punycode tests
Commit: e1804df2037a4eae003dd47b7dfd209be5be87dc
https://github.com/scummvm/scummvm/commit/e1804df2037a4eae003dd47b7dfd209be5be87dc
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-10-31T21:51:55+02:00
Commit Message:
DEVTOOLS: COMPANION: Fix punycode tests
Changed paths:
devtools/dumper-companion.py
diff --git a/devtools/dumper-companion.py b/devtools/dumper-companion.py
index d1f0fdbf4f..fa473e9c9c 100755
--- a/devtools/dumper-companion.py
+++ b/devtools/dumper-companion.py
@@ -541,7 +541,6 @@ def test_decode_name():
["Jönssonligan går på djupet.exe", "xn--Jnssonligan gr p djupet.exe-glcd70c"],
["Jönssonligan.exe", "xn--Jnssonligan.exe-8sb"],
["G3ãã©ã«ã", "xn--G3-3g4axdtexf"],
-# ["Big[test]", "Big[test]"],
["Where \\ Do <you> Want / To: G* ? ;Unless=nowhere,or|\"(everything)/\":*|\\?%<>,;=", "xn--Where Do you Want To G ;Unless=nowhere,or(everything),;=-5baedgdcbtamaaaaaaaaa99woa3wnnmb82aqb71ekb9g3c1f1cyb7bx6rfcv2pxa"],
]
for input, output in checks:
@@ -556,6 +555,7 @@ def test_needs_punyencoding():
["ããããã¤(Power PC)", False],
["ends_with_dot .", True],
["ends_with_space ", True],
+ ["Big[test]", False]
]
for input, expected in checks:
assert needs_punyencoding(input) == expected
More information about the Scummvm-git-logs
mailing list