1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-16 18:19:55 +00:00

Ensure the test name is ASCII

Gradle really doesn't like unicode apparently
This commit is contained in:
SquidDev 2019-05-25 18:11:14 +01:00
parent a81db2cda6
commit af8d4da594

View File

@ -416,6 +416,6 @@ private void tick()
private static String formatName( String name )
{
return name.replace( "\0", " \u2192 " );
return name.replace( "\0", " -> " );
}
}