From ad721813185598ea950c4f896c511bc4e5b41597 Mon Sep 17 00:00:00 2001 From: dan sinclair Date: Thu, 24 Mar 2016 11:30:03 -0400 Subject: Add missing comma. We'd skip a test as the two strings would get joined, add the missing comma so all tests are run correctly. Found by: etienneb@ R=etienneb@chromium.org Review URL: https://codereview.chromium.org/1826193002 . --- core/fpdftext/fpdf_text_int_unittest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/fpdftext/fpdf_text_int_unittest.cpp b/core/fpdftext/fpdf_text_int_unittest.cpp index c1c29cde97..1510ebc06c 100644 --- a/core/fpdftext/fpdf_text_int_unittest.cpp +++ b/core/fpdftext/fpdf_text_int_unittest.cpp @@ -19,7 +19,7 @@ TEST(fpdf_text_int, CheckMailLink) { // Check cases that fail to extract valid mail link. const wchar_t* invalid_strs[] = { L"", - L"peter.pan" // '@' is required. + L"peter.pan", // '@' is required. L"abc@server", // Domain name needs at least one '.'. L"abc.@gmail.com", // '.' can not immediately precede '@'. L"abc@xyz&q.org", // Domain name should not contain '&'. -- cgit v1.2.3