summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/uitest/writer_tests7/tdf139301.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/qa/uitest/writer_tests7/tdf139301.py b/sw/qa/uitest/writer_tests7/tdf139301.py
index 87d36d35a951..6064528bf166 100644
--- a/sw/qa/uitest/writer_tests7/tdf139301.py
+++ b/sw/qa/uitest/writer_tests7/tdf139301.py
@@ -30,12 +30,14 @@ class tdf139301(UITestCase):
xLineStyle = xFormatLineDlg.getChild("LB_LINE_STYLE")
# preset line style
- self.assertEqual(get_state_as_dict(xLineStyle)['SelectEntryText'], styles[i])
+ style = get_state_as_dict(xLineStyle)['SelectEntryText']
xOKBtn = xFormatLineDlg.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
self.ui_test.close_doc()
+ self.assertEqual(style, styles[i])
+
# vim: set shiftwidth=4 softtabstop=4 expandtab: