jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/572893 )
Change subject: [bugfix] Fix another error in e1bd61cd0 ......................................................................
[bugfix] Fix another error in e1bd61cd0
Fix failing tests after e1bd61cd0
Change-Id: Id973711c535c0da9455f75c14b3fdd6b211ec0b2 --- M tests/api_tests.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/tests/api_tests.py b/tests/api_tests.py index c2c053d..11a2dc1 100644 --- a/tests/api_tests.py +++ b/tests/api_tests.py @@ -1185,7 +1185,7 @@ for info, time in patterns.items(): lag = api.lagpattern.search(info) self.assertIsNotNone(lag) - self.assertEqual(int(lag.group('lag')), time) + self.assertEqual(float(lag.group('lag')), time)
if __name__ == '__main__': # pragma: no cover
pywikibot-commits@lists.wikimedia.org