update wuvt module for new site

This commit is contained in:
mutantmonkey
2015-03-05 16:14:46 -08:00
parent 83b286e8af
commit d963ac2e70
2 changed files with 16 additions and 26 deletions

View File

@@ -15,7 +15,7 @@ class TestWuvt(unittest.TestCase):
def test_wuvt(self):
wuvt(self.phenny, None)
out = self.phenny.reply.call_args[0][0]
m = re.match('^DJ .* is currently playing: .* by .*$', out,
out = self.phenny.say.call_args[0][0]
m = re.match('^DJ .* is currently playing .* by .*$', out,
flags=re.UNICODE)
self.assertTrue(m)