summaryrefslogtreecommitdiff
path: root/cppuhelper/qa/unourl
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-09-09 09:18:57 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-09-09 08:23:44 +0000
commitb3c72c734087b178cbcf1622e1088335c6eaf6a7 (patch)
treeb735935667d86b8e04e46509452abb91d9306a3e /cppuhelper/qa/unourl
parentfbda3f9a8d2d3f2ccd7999a3f110c56bce38c1d8 (diff)
cppuhelper: fix loplugin:cppunitassertequals warnings
Change-Id: Ia7c3de84b8001a30dbe1863be58a9639167cfa11 Reviewed-on: https://gerrit.libreoffice.org/28760 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'cppuhelper/qa/unourl')
-rw-r--r--cppuhelper/qa/unourl/cppu_unourl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/qa/unourl/cppu_unourl.cxx b/cppuhelper/qa/unourl/cppu_unourl.cxx
index a54cf7cf40c9..de229cc91ea1 100644
--- a/cppuhelper/qa/unourl/cppu_unourl.cxx
+++ b/cppuhelper/qa/unourl/cppu_unourl.cxx
@@ -227,8 +227,8 @@ namespace cppu_unourl
{}
CPPUNIT_ASSERT_MESSAGE("Failed to parse URI", bValid);
- CPPUNIT_ASSERT_MESSAGE("Failed to detect parameter correctly",
- bPresent == aTests[i].bPresent);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Failed to detect parameter correctly",
+ aTests[i].bPresent, bPresent);
}
}