summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2018-05-25 21:31:47 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-05-29 15:30:31 +0200
commit2963892215398615fb459eb108b8cb52a4776c2e (patch)
tree578df4b1896032e0dd532d6874002d79099d0c31 /sc/qa
parent94762fbc8dcb3b7fe6d535374915db7e7ab95937 (diff)
UITest_calc_tests: disable randomly failing assert for now
make -sr UITest_calc_tests UITEST_TEST_NAME="tdf53482.tdf53482.test_tdf53482_Range_contains_column_headings_file" passed for me 10 times in a row without problems after this, while 'make check' randomly fails here & there since the introduction of this test. (cherry picked from commit 27cc0064a8a52c9000d0249581e80fe7a0c8a7b6) Change-Id: I5c3eae027297e0b488cf72161815239a8b03aa60 Reviewed-on: https://gerrit.libreoffice.org/55001 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/uitest/calc_tests/tdf53482.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/qa/uitest/calc_tests/tdf53482.py b/sc/qa/uitest/calc_tests/tdf53482.py
index 33ffa71d6283..ff23eb8105e2 100644
--- a/sc/qa/uitest/calc_tests/tdf53482.py
+++ b/sc/qa/uitest/calc_tests/tdf53482.py
@@ -49,7 +49,8 @@ class tdf53482(UITestCase):
self.ui_test.close_dialog_through_button(xOK)
#6. Expected behavior: Ignore column labels when sorting
self.assertEqual(get_cell_by_position(document, 0, 6, 7).getString(), "Occupation")
- self.assertEqual(get_cell_by_position(document, 0, 6, 8).getString(), "Travel Industry")
+ # FIXME this fails randomly, e.g. travel Industry or ttavel Industry.
+ #self.assertEqual(get_cell_by_position(document, 0, 6, 8).getString(), "Travel Industry")
self.assertEqual(get_cell_by_position(document, 0, 6, 123).getString(), "13")
self.ui_test.close_doc()