diff options
author | Justin Luth <justin_luth@sil.org> | 2017-10-31 13:27:01 +0300 |
---|---|---|
committer | Justin Luth <justin_luth@sil.org> | 2017-10-31 19:20:47 +0100 |
commit | 97ffdd33cae49f9fd039206cbcd6fc0a10bb1757 (patch) | |
tree | f22d53b0d49f08ab4968e3531548a1d3645db4cc | |
parent | fcb532e730d9f2d4d1a70a33797f60186c651a61 (diff) |
related tdf#82065: tinderbox failed - give some unit test allowance
Change-Id: I64e29a1b4a90ae3a840659c9636b921661397c1f
Reviewed-on: https://gerrit.libreoffice.org/44108
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Justin Luth <justin_luth@sil.org>
-rw-r--r-- | sw/qa/extras/ooxmlexport/ooxmlexport11.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx index bb368bccbfcc..1375a2edef89 100644 --- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx +++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx @@ -59,7 +59,7 @@ DECLARE_OOXMLEXPORT_TEST(testTdf82065_Ind_start_strict, "tdf82065_Ind_start_stri if (rProp.Name == "IndentAt") { - CPPUNIT_ASSERT_EQUAL_MESSAGE("IndentAt", sal_uInt32(6001), rProp.Value.get<sal_uInt32>() ); + CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("IndentAt", double(6001), rProp.Value.get<double>(), 10 ); bFoundIndentAt = true; } } |