diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-09-06 20:49:21 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-09-06 20:50:37 +0200 |
commit | 04f1af50c5a10e98c8af0da6fd51e03b6b7e668f (patch) | |
tree | 96e3969afedb579f237fdd720b41a26c12b8d4eb /unoxml/qa | |
parent | a71b454eabb18c3aeb672e0b57650aadbb7c40a0 (diff) |
Typo exeption->exception (domtest.cxx)
Change-Id: Id8a6b33a643defff82fa9b5e55ebf8c0d3e9c48d
Reviewed-on: https://gerrit.libreoffice.org/42023
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'unoxml/qa')
-rw-r--r-- | unoxml/qa/unit/domtest.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unoxml/qa/unit/domtest.cxx b/unoxml/qa/unit/domtest.cxx index 18e37a8fa297..5126164091dd 100644 --- a/unoxml/qa/unit/domtest.cxx +++ b/unoxml/qa/unit/domtest.cxx @@ -235,7 +235,7 @@ struct BasicTest : public test::BootstrapFixture { try { - // We DONT expect exeption here, as mxWarningInStream is valid XML Doc + // We DONT expect exception here, as mxWarningInStream is valid XML Doc CPPUNIT_ASSERT_MESSAGE("Valid input file did not result in XDocument #2", mxDomBuilder->parse( uno::Reference<io::XInputStream>( @@ -253,7 +253,7 @@ struct BasicTest : public test::BootstrapFixture { try { - // We expect exeption here, as mxErrorInStream is invalid XML Doc + // We expect exception here, as mxErrorInStream is invalid XML Doc CPPUNIT_ASSERT_MESSAGE("Invalid input file result in XDocument #2!", !mxDomBuilder->parse( uno::Reference<io::XInputStream>( @@ -262,7 +262,7 @@ struct BasicTest : public test::BootstrapFixture } catch (const css::xml::sax::SAXParseException&) { - // It's OK to catch an exeption here as we parse incorrect XML file + // It's OK to catch an exception here as we parse incorrect XML file } CPPUNIT_ASSERT_MESSAGE("No parse errors in unclean input file", !mxErrHandler->mnWarnCount && mxErrHandler->mnErrCount /*&& !mxErrHandler->mnFatalCount*/); |