diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-19 17:14:27 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-19 17:15:06 +0200 |
commit | b7faad20cebe2b92e51fa2279f9c49d9fbd5a2d3 (patch) | |
tree | 72e694483e3d8bf3c6bd30b8999892ce4a640b21 /chart2/qa | |
parent | 0196c1c9277129b058827ee1804f93ffa90a307c (diff) |
Fix expected/actual argument order
Change-Id: I57a44ce4ca9c1e26366a90fb28616f46c209f7b2
Diffstat (limited to 'chart2/qa')
-rw-r--r-- | chart2/qa/extras/chart2export.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/qa/extras/chart2export.cxx b/chart2/qa/extras/chart2export.cxx index 7e2e11c328ff..b10d6a5acc58 100644 --- a/chart2/qa/extras/chart2export.cxx +++ b/chart2/qa/extras/chart2export.cxx @@ -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( |