diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2018-05-29 10:06:40 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2018-05-30 07:16:29 +0200 |
commit | 173c3a7321d0ba2583f1198d5ea3b54983665f37 (patch) | |
tree | 3f2249ea01abd68ce6afc2226f99f9c253c890cf /sc/qa/uitest | |
parent | a2045f94677c4407c00a3299da0936ded696cfb2 (diff) |
Revert "UITest_calc_tests: disable randomly failing assert for now"
Fixed by my previous commit.
This reverts commit 27cc0064a8a52c9000d0249581e80fe7a0c8a7b6.
Change-Id: Ib64e7341251d848b4db0dbb1f58c4fcef51437ed
Diffstat (limited to 'sc/qa/uitest')
-rw-r--r-- | sc/qa/uitest/calc_tests/tdf53482.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/qa/uitest/calc_tests/tdf53482.py b/sc/qa/uitest/calc_tests/tdf53482.py index ff23eb8105e2..33ffa71d6283 100644 --- a/sc/qa/uitest/calc_tests/tdf53482.py +++ b/sc/qa/uitest/calc_tests/tdf53482.py @@ -49,8 +49,7 @@ 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") - # 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, 8).getString(), "Travel Industry") self.assertEqual(get_cell_by_position(document, 0, 6, 123).getString(), "13") self.ui_test.close_doc() |