summaryrefslogtreecommitdiff
path: root/sal/qa/osl
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-06-17 08:49:04 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-06-17 10:35:48 +0000
commitbe4dd3954a57518168647c18af298ecda0fb2428 (patch)
tree929cd4c92e337d09d2e00bdbd5632f3f790ceb2e /sal/qa/osl
parent551a5066fcc8000850d34408d8c1bcdd5b599db3 (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>
Diffstat (limited to 'sal/qa/osl')
-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 a2fad9f240d9..af5f94752742 100644
--- a/sal/qa/osl/pipe/osl_Pipe.cxx
+++ b/sal/qa/osl/pipe/osl_Pipe.cxx
@@ -485,8 +485,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 );