summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordan sinclair <dj2@everburning.com>2016-03-24 11:30:03 -0400
committerdan sinclair <dj2@everburning.com>2016-03-24 11:30:03 -0400
commitad721813185598ea950c4f896c511bc4e5b41597 (patch)
tree7abcff1d0a8edafba5eee4705a24c164e58584bd
parentcf6bffb79f6e62d096908e6629daba5525728272 (diff)
downloadpdfium-ad721813185598ea950c4f896c511bc4e5b41597.tar.xz
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 .
-rw-r--r--core/fpdftext/fpdf_text_int_unittest.cpp2
1 files changed, 1 insertions, 1 deletions
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 '&'.