sw/qa/uitest/chapterNumbering/tdf145215.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
New commits: commit d267e5a0b1a05c595d7bd90987aceae5c98d90d5 Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Mon Oct 25 10:43:57 2021 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Mon Oct 25 13:22:29 2021 +0200 uitest: fix indent Change-Id: I7034ab2b7933f248a0d6929bd11497ff3098dd3e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124138 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/sw/qa/uitest/chapterNumbering/tdf145215.py b/sw/qa/uitest/chapterNumbering/tdf145215.py index 31d7437d72aa..74d473fc7287 100644 --- a/sw/qa/uitest/chapterNumbering/tdf145215.py +++ b/sw/qa/uitest/chapterNumbering/tdf145215.py @@ -25,10 +25,10 @@ class Tdf145215(UITestCase): xSubLevels = xDialog.getChild("sublevelsnf") self.assertEqual(get_state_as_dict(xSubLevels)["Text"], "1") - # Check field value (there is only one field) - textfields = writer_doc.getTextFields() - for textfield in textfields: - self.assertTrue(textfield.supportsService("com.sun.star.text.TextField.GetReference")) - self.assertEqual(textfield.CurrentPresentation, "1.2.1(i)") + # Check field value (there is only one field) + textfields = writer_doc.getTextFields() + for textfield in textfields: + self.assertTrue(textfield.supportsService("com.sun.star.text.TextField.GetReference")) + self.assertEqual(textfield.CurrentPresentation, "1.2.1(i)") # vim: set shiftwidth=4 softtabstop=4 expandtab: