summaryrefslogtreecommitdiffstats
path: root/io
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-12-11 22:17:45 +0100
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2019-12-12 04:14:02 +0100
commit911d848e60ab57d5d865290dcf2a5aa28a7df854 (patch)
treeb0f2cc5f9c57b99271437c2ab0a414595166d8ae /io
parenttdf#119191 Implement SdrObjCustomShape::AdjustToMaxRect (diff)
downloadcore-911d848e60ab57d5d865290dcf2a5aa28a7df854.tar.gz
core-911d848e60ab57d5d865290dcf2a5aa28a7df854.zip
Fix typo
Change-Id: Ie1a06014d989f51141a15c724ab026f5423335de Reviewed-on: https://gerrit.libreoffice.org/84995 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'io')
-rw-r--r--io/test/stm/pumptest.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/test/stm/pumptest.cxx b/io/test/stm/pumptest.cxx
index e00d840f3a75..f0563153e91b 100644
--- a/io/test/stm/pumptest.cxx
+++ b/io/test/stm/pumptest.cxx
@@ -317,7 +317,7 @@ void OPumpTest::testClose( const Reference< XInterface > &r )
ERROR_ASSERT( ! t.m_pTestListener->m_bStarted , "started too early" );
ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "termination unexpected" );
ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected clase" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected close" );
t.m_rControl->start();
mywait();
@@ -325,7 +325,7 @@ void OPumpTest::testClose( const Reference< XInterface > &r )
ERROR_ASSERT( t.m_pTestListener->m_bStarted , "should have been started already" );
ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "termination unexpected" );
ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected clase" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected close" );
Reference< XStreamListener > rListener( new TestListener() );
t.m_rControl->addListener( rListener );