summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2022-01-26 16:38:09 +0100
committerJulien Nabet <serval2412@yahoo.fr>2022-01-26 17:38:20 +0100
commita5f73561a54fa3be7413cd28568fc34d62eeffde (patch)
treeb1a4434e49b7b07eaf815a7d39121f8bb8c91d46 /filter
parentc51799c88daabf000b506594b89220720ea814e7 (diff)
Fix typo
Change-Id: I82c9da0e6ce73cc73a1edaf2d7d9559c5086fde9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128993 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter')
-rw-r--r--filter/qa/unit/svg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/qa/unit/svg.cxx b/filter/qa/unit/svg.cxx
index a93d92c7d1ea..8cb696efa170 100644
--- a/filter/qa/unit/svg.cxx
+++ b/filter/qa/unit/svg.cxx
@@ -234,7 +234,7 @@ CPPUNIT_TEST_FIXTURE(SvgFilterTest, attributeRedefinedTest)
// Actual : 2
// i.e. 2 of the empty paragraph do not get generated even if there
// is id imported for the paragraphs
- // If we don't create the empty paragraphs the id attribute attribute gets redefined like this:
+ // If we don't create the empty paragraphs the id attribute gets redefined like this:
// <tspan id="id14" id="id15" id="id17" class="TextParagraph" font-family="Bahnschrift Light" font-size="1129px" font-weight="400">
OString xPath = "//svg:g[@class='TextShape']//svg:text[@class='SVGTextShape']//"
@@ -242,7 +242,7 @@ CPPUNIT_TEST_FIXTURE(SvgFilterTest, attributeRedefinedTest)
assertXPath(pXmlDoc, xPath, 4);
//assert that each tspan element with TextParagraph class has id and the tspan element of
- //each empty paragraph doesnot contain tspan element with class TextPosition
+ //each empty paragraph does not contain tspan element with class TextPosition
assertXPath(pXmlDoc, xPath + "[1]", "id", "id4");
assertXPath(pXmlDoc, xPath + "[2]", "id", "id5");
assertXPath(pXmlDoc, xPath + "[2]//svg:tspan[@class='TextPosition']", 0);