From dba22a4b4484e0c3d14ef7b673ef6242ee1206fc Mon Sep 17 00:00:00 2001 From: Kevin Murphy Date: Sun, 12 Sep 2004 21:05:52 +0000 Subject: [PATCH] Updated for command name change in UrbanDict plugin --- test/test_UrbanDict.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/test/test_UrbanDict.py b/test/test_UrbanDict.py index d1069d96b..7ef352530 100644 --- a/test/test_UrbanDict.py +++ b/test/test_UrbanDict.py @@ -38,13 +38,11 @@ class UrbanDictTestCase(ChannelPluginTestCase, PluginDocumentation): if network: def testUrbanDict(self): - self.assertNotError('ud') - self.assertRegexp('ud somethinginvalid', - 'Error: No definition found.') - self.assertRegexp('ud yo', - 'a word that died a horrible death in 1993') - self.assertRegexp('ud bozac', - '"Druid Diallect"') + self.assertNotError('urbandict') + self.assertRegexp('urbandict somethinginvalid', + 'Error: No definition found.') + self.assertRegexp('urbandict bozac', + '"Druid Diallect"') # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: