From 17fe6b54cdc6a71e324bf83421f22eb2954089a1 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 18 Dec 2014 13:22:10 +0100 Subject: dbaccess: Use appropriate OUString functions on string constants Change-Id: I1d63c9123ad985cb3424b0ac0ad30c12e39f8170 --- dbaccess/qa/unit/firebird.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbaccess/qa') diff --git a/dbaccess/qa/unit/firebird.cxx b/dbaccess/qa/unit/firebird.cxx index 424c0cdccf58..a8022c125f7f 100644 --- a/dbaccess/qa/unit/firebird.cxx +++ b/dbaccess/qa/unit/firebird.cxx @@ -89,9 +89,9 @@ void FirebirdTest::testIntegerDatabase() xRow->getInt(xColumnLocate->findColumn("_INT"))); CPPUNIT_ASSERT(SAL_CONST_INT64(-9000000000000000000) == xRow->getLong(xColumnLocate->findColumn("_BIGINT"))); - CPPUNIT_ASSERT(OUString("5") == + CPPUNIT_ASSERT("5" == xRow->getString(xColumnLocate->findColumn("_CHAR"))); - CPPUNIT_ASSERT(OUString("5") == + CPPUNIT_ASSERT("5" == xRow->getString(xColumnLocate->findColumn("_VARCHAR"))); CPPUNIT_ASSERT(!xResultSet->next()); // Should only be one row -- cgit