diff options
author | dan sinclair <dj2@everburning.com> | 2016-03-24 11:30:03 -0400 |
---|---|---|
committer | dan sinclair <dj2@everburning.com> | 2016-03-24 11:30:03 -0400 |
commit | ad721813185598ea950c4f896c511bc4e5b41597 (patch) | |
tree | 7abcff1d0a8edafba5eee4705a24c164e58584bd /core/fpdftext | |
parent | cf6bffb79f6e62d096908e6629daba5525728272 (diff) | |
download | pdfium-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 .
Diffstat (limited to 'core/fpdftext')
-rw-r--r-- | core/fpdftext/fpdf_text_int_unittest.cpp | 2 |
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 '&'. |