Description: fix matching regex
 Somehow the original string inverted its terms, from "moo and boo" to "boo and moo".
Bug: https://github.com/ProgVal/Limnoria/issues/1383
Author: Mattia Rizzolo <mattia@debian.org>
Last-Update: 2019-10-28

--- a/plugins/MoobotFactoids/test.py
+++ b/plugins/MoobotFactoids/test.py
@@ -225,7 +225,7 @@
         self.prefix = userPrefix2
         self.assertNotError('mogle is <reply>mo')
         self.assertRegexp('most authored',
-                            'Most prolific authors:.*moo.*(1).*boo.*(1)')
+                          r'Most prolific authors:.*(b|m)oo.*\(1\).*(b|m)oo.*\(1\)')
         self.assertRegexp('most recent',
                             "2 latest factoids:.*mogle.*moogle.*")
         self.assertResponse('moogle', 'moo')
