From 749b8e18ad7ac7dde1c671ce1ebf096613d7c430 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 14 Sep 2021 21:03:15 +0200 Subject: [PATCH] fix test --- test/test_misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_misc.py b/test/test_misc.py index 3cb40079c..a663f4970 100644 --- a/test/test_misc.py +++ b/test/test_misc.py @@ -36,7 +36,7 @@ class MiscTestCase(SupyTestCase): def testAuthorExpand(self): # The standard 3 pair: name, nick, email self.assertEqual(str(supybot.authors.progval), - 'Valentin Lorentz (ProgVal) ') + 'Valentin Lorentz (progval) ') # All 3 provided, but name == nick self.assertEqual(str(supybot.Author('foobar', 'foobar', 'foobar@example.net')), 'foobar ') @@ -57,7 +57,7 @@ class MiscTestCase(SupyTestCase): def testAuthorExpandShort(self): self.assertEqual(supybot.authors.progval.format(short=True), - 'Valentin Lorentz (ProgVal)') + 'Valentin Lorentz (progval)') self.assertEqual(supybot.authors.jlu.format(short=True), 'James Lu')