svl/qa/unit/test_URIHelper.cxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 9b8ae4df0ec765c5d65a27a6c3ef5daa7606e99f
Author:     Andrea Gelmini <[email protected]>
AuthorDate: Wed May 3 11:12:02 2023 +0200
Commit:     Julien Nabet <[email protected]>
CommitDate: Wed May 3 11:43:07 2023 +0200

    Fix typo
    
    Change-Id: If92643e3e8aad5a3367b9ee20afa5a1fef7ee8ca
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151317
    Tested-by: Julien Nabet <[email protected]>
    Reviewed-by: Julien Nabet <[email protected]>

diff --git a/svl/qa/unit/test_URIHelper.cxx b/svl/qa/unit/test_URIHelper.cxx
index 33a08996cb58..4e4bbab31934 100644
--- a/svl/qa/unit/test_URIHelper.cxx
+++ b/svl/qa/unit/test_URIHelper.cxx
@@ -410,11 +410,11 @@ void Test::testFindFirstDOIInText() {
     };
     static Data const tests[] = {
         { "doi:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with only digits
-        { "Doi:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the the first three character being capitalized
-        { "DoI:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the the first three character being capitalized
-        { "DOI:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the the first three character being capitalized
-        { "dOI:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the the first three character being capitalized
-        { "dOi:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the the first three character being capitalized
+        { "Doi:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the first three characters being capitalized
+        { "DoI:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the first three characters being capitalized
+        { "DOI:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the first three characters being capitalized
+        { "dOI:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the first three characters being capitalized
+        { "dOi:10.1000/182", "https://doi.org/10.1000/182";, 0, 15 }, // valid 
doi suffix with some of the first three characters being capitalized
         { "doi:10.1038/nature03001", "https://doi.org/10.1038/nature03001";, 0, 
23 }, // valid doi suffix with alphanumeric characters
         { "doi:10.1093/ajae/aaq063", "https://doi.org/10.1093/ajae/aaq063";, 0, 
23 }, // valid doi suffix with multiple slash
         { "doi:10.1016/S0735-1097(98)00347-7", 
"https://doi.org/10.1016/S0735-1097(98)00347-7", 0, 33 }, // valid doi suffix 
with characters apart from alphanumeric

Reply via email to