diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-12-11 22:17:45 +0100 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2019-12-12 04:14:02 +0100 |
commit | 911d848e60ab57d5d865290dcf2a5aa28a7df854 (patch) | |
tree | b0f2cc5f9c57b99271437c2ab0a414595166d8ae /io | |
parent | f44140bebb9c493d97ba5aef26c9692c53a6b93f (diff) |
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.cxx | 4 |
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 ); |