aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/UtilsTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/UtilsTest.cpp')
-rw-r--r--tests/UtilsTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/UtilsTest.cpp b/tests/UtilsTest.cpp
index f6b02112f0..8a8319c74b 100644
--- a/tests/UtilsTest.cpp
+++ b/tests/UtilsTest.cpp
@@ -55,9 +55,9 @@ static void test_utf16(skiatest::Reporter* reporter) {
static const SkUnichar gUni[] = {
0x10000, 0x18080, 0x20202, 0xFFFFF, 0x101234
};
-
+
uint16_t buf[2];
-
+
for (size_t i = 0; i < SK_ARRAY_COUNT(gUni); i++) {
size_t count = SkUTF16_FromUnichar(gUni[i], buf);
REPORTER_ASSERT(reporter, count == 2);
@@ -100,7 +100,7 @@ static void TestUTF(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter,
p - gTest[i].fUtf8 == (int)strlen(gTest[i].fUtf8));
}
-
+
test_utf16(reporter);
test_search(reporter);
}