diff --git a/test/test_Factoids.py b/test/test_Factoids.py index 0c50a0c86..c93569c1e 100644 --- a/test/test_Factoids.py +++ b/test/test_Factoids.py @@ -45,10 +45,10 @@ class FactoidsTestCase(ChannelPluginTestCase, PluginDocumentation): self.assertRegexp('whatis JEMFINCH', 'my primary author') self.assertNotError('learn jemfinch as a crappy assembly programmer') self.assertRegexp('whatis jemfinch', r'.*primary author.*assembly') - self.assertError('unlearn jemfinch') - self.assertError('unlearn jemfinch 2') - self.assertNotError('unlearn jemfinch 1') - self.assertNotError('unlearn jemfinch 0') + self.assertError('forget jemfinch') + self.assertError('forget jemfinch 2') + self.assertNotError('forget jemfinch 1') + self.assertNotError('forget jemfinch 0') self.assertError('whatis jemfinch') self.assertError('factoidinfo jemfinch') @@ -57,9 +57,9 @@ class FactoidsTestCase(ChannelPluginTestCase, PluginDocumentation): self.assertRegexp('whatis foo bar', 'baz') self.assertNotError('learn foo bar as quux') self.assertRegexp('whatis foo bar', '.*baz.*quux') - self.assertError('unlearn foo bar') - self.assertNotError('unlearn foo bar 1') - self.assertNotError('unlearn foo bar 0') + self.assertError('forget foo bar') + self.assertNotError('forget foo bar 1') + self.assertNotError('forget foo bar 0') self.assertError('whatis foo bar') self.assertError('factoidinfo foo bar')