diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-04-13 10:58:03 +0200 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-04-13 11:58:38 +0200 |
commit | 93d58279cd56fd026db4dfb68d04fc22edba1abc (patch) | |
tree | fe0361c9d0ddd269283bb224320ff28027bfc0c4 /uitest | |
parent | 4f282bba62b772286bb61931cd87eb05af832d65 (diff) |
Related tdf#105922: step increment is a property of the shape
not of the gradient. Therefore don't reset selection in the gradient
list if step increment changes.
This hopefully fixes also the failing UI test
Change-Id: Ia3da23d80ee9601b40309a2f213bd3b2c850ff5a
Reviewed-on: https://gerrit.libreoffice.org/36508
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/writer_tests/backgrounds.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/writer_tests/backgrounds.py b/uitest/writer_tests/backgrounds.py index 0e9d6a592c26..da49a7526dc2 100644 --- a/uitest/writer_tests/backgrounds.py +++ b/uitest/writer_tests/backgrounds.py @@ -43,8 +43,8 @@ class WriterBackgrounds(UITestCase): document.StyleFamilies.PageStyles.Standard.FillGradient.StartIntensity, 100) self.assertEqual( document.StyleFamilies.PageStyles.Standard.FillGradient.EndIntensity, 100) - #self.assertEqual( - #document.StyleFamilies.PageStyles.Standard.FillGradientName, 'Tango Green') + self.assertEqual( + document.StyleFamilies.PageStyles.Standard.FillGradientName, 'Tango Green') elif btn == 'btnhatch': self.assertEqual( document.StyleFamilies.PageStyles.Standard.FillHatch.Style, SINGLE ) |