diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-03-18 19:26:14 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-18 22:18:09 +0000 |
commit | 96a9b38db5fd9c21bffe4274fa7d5083d4bc2ee9 (patch) | |
tree | 5fe83c14b342f351a5c89dbd8ac289d6755891de /sd/qa | |
parent | d1f3219e773f854c33b39a1fa1622def3282d8d6 (diff) |
Typo: sucess->success + "adminsitrator" fix
Change-Id: I42fdb0a60b987af92e0433e7ff0e5754bc1da748
Reviewed-on: https://gerrit.libreoffice.org/35412
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd/qa')
-rw-r--r-- | sd/qa/unit/import-tests.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx index 502f9f2f018d..44de6aa11393 100644 --- a/sd/qa/unit/import-tests.cxx +++ b/sd/qa/unit/import-tests.cxx @@ -916,8 +916,8 @@ void SdImportTest::testBnc591147() //uno::Reference< drawing::XShape > xShape(xPage->getByIndex(0), uno::UNO_QUERY_THROW ); uno::Reference< beans::XPropertySet > xPropSet( getShape( 0, xPage ) ); OUString sVideoURL("emptyURL"); - bool bSucess = xPropSet->getPropertyValue("MediaURL") >>= sVideoURL; - CPPUNIT_ASSERT_MESSAGE( "MediaURL property is not set", bSucess ); + bool bSuccess = xPropSet->getPropertyValue("MediaURL") >>= sVideoURL; + CPPUNIT_ASSERT_MESSAGE( "MediaURL property is not set", bSuccess ); CPPUNIT_ASSERT_MESSAGE("MediaURL is empty", !sVideoURL.isEmpty()); // Second page has audio file inserted @@ -926,8 +926,8 @@ void SdImportTest::testBnc591147() xPropSet.set( getShape( 0, xPage ) ); OUString sAudioURL("emptyURL"); - bSucess = xPropSet->getPropertyValue("MediaURL") >>= sAudioURL; - CPPUNIT_ASSERT_MESSAGE( "MediaURL property is not set", bSucess ); + bSuccess = xPropSet->getPropertyValue("MediaURL") >>= sAudioURL; + CPPUNIT_ASSERT_MESSAGE( "MediaURL property is not set", bSuccess ); CPPUNIT_ASSERT_MESSAGE("MediaURL is empty", !sAudioURL.isEmpty()); CPPUNIT_ASSERT_MESSAGE( "sAudioURL and sVideoURL should not be equal", sAudioURL != sVideoURL ); |