Kaydet (Commit) b7faad20 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix expected/actual argument order

Change-Id: I57a44ce4ca9c1e26366a90fb28616f46c209f7b2
üst 0196c1c9
......@@ -263,7 +263,7 @@ void testErrorBar( Reference< XPropertySet > xErrorBar )
CPPUNIT_ASSERT(bShowNegative);
double nVal = 0.0;
CPPUNIT_ASSERT(xErrorBar->getPropertyValue("PositiveError") >>= nVal);
CPPUNIT_ASSERT_DOUBLES_EQUAL(nVal, 10.0, 1e-10);
CPPUNIT_ASSERT_DOUBLES_EQUAL(10.0, nVal, 1e-10);
}
void checkCommonTrendline(
......
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