jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/649496 )
Change subject: [bugfix] fix missing super setUp call in FlowTests ......................................................................
[bugfix] fix missing super setUp call in FlowTests
Change-Id: Ic21dbcd90b49fcf5da330863af4fdcd6a91d6533 --- M tests/flow_edit_tests.py 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: DannyS712: Looks good to me, but someone else must approve Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/tests/flow_edit_tests.py b/tests/flow_edit_tests.py index 9a8cd01..0b06191 100644 --- a/tests/flow_edit_tests.py +++ b/tests/flow_edit_tests.py @@ -217,6 +217,7 @@
def setUp(self): """Setup tests.""" + super().setUp() self.topic = Topic(self.site, 'Topic:Sl4svodmrhzmpjjh') self.post = Post(self.topic, 'sq1qvoig1az8w7cd')
pywikibot-commits@lists.wikimedia.org