summaryrefslogtreecommitdiff
path: root/sal/qa/osl/pipe/osl_Pipe.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-06-17 08:49:04 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-07-20 01:26:10 -0400
commitb91d37bcab9a6ab734c96b9e0ca59c49a75e0ed2 (patch)
treefc976594be8b7f81a4e6888511f07e7c796c7a1d /sal/qa/osl/pipe/osl_Pipe.cxx
parent82bb3b84594d4eadaa062cdb8381360dbc7cf3b6 (diff)
CppunitTest_sal_rtl_cipher: fix loplugin:cppunitassertequals warnings
Change-Id: I94e79ae616d5cb9287e69544e283ce4d288a19ef Reviewed-on: https://gerrit.libreoffice.org/26401 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org> (cherry picked from commit be4dd3954a57518168647c18af298ecda0fb2428)
Diffstat (limited to 'sal/qa/osl/pipe/osl_Pipe.cxx')
-rw-r--r--sal/qa/osl/pipe/osl_Pipe.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/qa/osl/pipe/osl_Pipe.cxx b/sal/qa/osl/pipe/osl_Pipe.cxx
index 568f0472923d..4b13bd9f22a5 100644
--- a/sal/qa/osl/pipe/osl_Pipe.cxx
+++ b/sal/qa/osl/pipe/osl_Pipe.cxx
@@ -494,8 +494,8 @@ namespace osl_Pipe
aPipe.close( );
int nRet = aPipe.send( m_pTestString1.getStr(), 3 );
- CPPUNIT_ASSERT_MESSAGE( "#test comment#: use after close.",
- OSL_PIPE_FAIL == nRet );
+ CPPUNIT_ASSERT_EQUAL_MESSAGE( "#test comment#: use after close.",
+ nRet, OSL_PIPE_FAIL );
}
CPPUNIT_TEST_SUITE( close );