summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/source/lang/xserviceinfo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/lang/xserviceinfo.cxx b/test/source/lang/xserviceinfo.cxx
index 9db9e4b1cbe3..3f7e6541fa85 100644
--- a/test/source/lang/xserviceinfo.cxx
+++ b/test/source/lang/xserviceinfo.cxx
@@ -18,7 +18,6 @@
#include <cppunit/extensions/HelperMacros.h>
using namespace css;
-using namespace css::uno;
namespace apitest
{
@@ -41,7 +40,8 @@ void XServiceInfo::testSupportsService()
{
uno::Reference<lang::XServiceInfo> xSI(init(), uno::UNO_QUERY_THROW);
- CPPUNIT_ASSERT(xSI->supportsService(m_aServiceName));
+ for (const auto& aServiceName : m_aServiceNames)
+ CPPUNIT_ASSERT(xSI->supportsService(aServiceName));
}
} // namespace apitest