Rebased ref, commits from common ancestor:
commit 26fd3cf9b6d30a0fc7a078257a5d35ecda474a51
Author: Thorsten Behrens <thorsten.behr...@cib.de>
Date:   Sat Jun 9 15:21:40 2018 +0200

    adding some fuzz to row height tolerance tests
    
    Expanding on a4ab0c08e74746a96dcf23c3d50cd2e65ee31342 there's
    another test that on some tinderboxes was a few permille off.
    
    Adding 1% fuzz in comparison, seems we've now aquired some font
    layout instabilities across platforms.
    
    Change-Id: I7b068105c6ffad44b055e4dc37deb03c6040ab09
    Reviewed-on: https://gerrit.libreoffice.org/55509
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Thorsten Behrens <thorsten.behr...@cib.de>
    Reviewed-on: https://gerrit.libreoffice.org/56714
    Tested-by: Thorsten Behrens <thorsten.behr...@cib.de>

diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index f73f1e2292dc..436cd2381f95 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -3512,12 +3512,9 @@ void ScFiltersTest::testTdf62268()
 
     SCTAB nTab = 0;
     nHeight = rDoc.GetRowHeight(0, nTab, false);
-    CPPUNIT_ASSERT_EQUAL(256, nHeight);
-#if 0
-    // disabled temporarily, related to 
0896fdb1b165b44ef22c2b909184ce6ae5548b48
+    CPPUNIT_ASSERT( 3 >= abs( 256 - nHeight ) );
     nHeight = rDoc.GetRowHeight(1, nTab, false);
-    CPPUNIT_ASSERT_EQUAL(1905, nHeight);
-#endif
+    CPPUNIT_ASSERT( 19 >= abs( 1905 - nHeight ) );
 
     xDocSh->DoClose();
 }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to