From 273cec8a92ecc47ec7f336c07a2fa124726901e9 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Tue, 11 Jun 2019 21:47:31 +0200 Subject: [PATCH] Fix typo in test name --- server/src/test/java/com/genymobile/scrcpy/StringUtilsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/test/java/com/genymobile/scrcpy/StringUtilsTest.java b/server/src/test/java/com/genymobile/scrcpy/StringUtilsTest.java index a2683945..01700689 100644 --- a/server/src/test/java/com/genymobile/scrcpy/StringUtilsTest.java +++ b/server/src/test/java/com/genymobile/scrcpy/StringUtilsTest.java @@ -10,7 +10,7 @@ public class StringUtilsTest { @Test @SuppressWarnings("checkstyle:MagicNumber") - public void testUtf8Trucate() { + public void testUtf8Truncate() { String s = "aÉbÔc"; byte[] utf8 = s.getBytes(StandardCharsets.UTF_8); Assert.assertEquals(7, utf8.length);