Kaydet (Commit) 2cb68537 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typo in code

Change-Id: If1b7b6c157a250baae054d94a5cdf788651bb7bd
Reviewed-on: https://gerrit.libreoffice.org/62906Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
üst 6225a1fb
......@@ -210,8 +210,8 @@ void MysqlTestDriver::testDBPositionChange()
xResultSet->last();
CPPUNIT_ASSERT_EQUAL(ROW_COUNT, nUpdateCount);
CPPUNIT_ASSERT_EQUAL(ROW_COUNT, xResultSet->getRow());
bool successPrevios = xResultSet->previous();
CPPUNIT_ASSERT(successPrevios);
bool successPrevious = xResultSet->previous();
CPPUNIT_ASSERT(successPrevious);
CPPUNIT_ASSERT_EQUAL(ROW_COUNT - 1, nUpdateCount);
xResultSet->beforeFirst();
xResultSet->next();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment