mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 11:42:52 +01:00
Fix some typos
This commit is contained in:
parent
fec6959acb
commit
e740953068
@ -36,7 +36,7 @@ class ServicesTestCase(PluginTestCase):
|
||||
config = {
|
||||
'plugins.Services.NickServ': 'NickServ',
|
||||
'plugins.Services.ChanServ': 'ChanServ',
|
||||
}
|
||||
}
|
||||
|
||||
def testPasswordAndIdentify(self):
|
||||
self.assertNotError('services password foo bar')
|
||||
@ -50,7 +50,7 @@ class ServicesTestCase(PluginTestCase):
|
||||
self.assertTrue(m.args[0] == 'NickServ')
|
||||
self.assertTrue(m.args[1].lower() == 'identify biff')
|
||||
|
||||
def testPasswordConfg(self):
|
||||
def testPasswordConfig(self):
|
||||
self.assertNotError('config plugins.Services.nicks ""')
|
||||
self.assertNotError('config network plugins.Services.nicks ""')
|
||||
|
||||
|
@ -95,7 +95,7 @@ def open_registry(filename, clear=False):
|
||||
# worse, the error will pass silently.
|
||||
#
|
||||
# If the line ends in an odd number of backslashes, then there is a
|
||||
# line-continutation.
|
||||
# line-continuation.
|
||||
m = slashEnd.search(line)
|
||||
if m and len(m.group(0)) % 2:
|
||||
acc += line[:-1]
|
||||
|
@ -280,7 +280,7 @@ class PluginTestCase(SupyTestCase):
|
||||
|
||||
def tearDown(self):
|
||||
if self.__class__ in (PluginTestCase, ChannelPluginTestCase):
|
||||
# Necessary because there's a test in here that shouldn\'t run.
|
||||
# Necessary because there's a test in here that shouldn't run.
|
||||
return
|
||||
for (group, original) in self.originals.items():
|
||||
group.setValue(original)
|
||||
|
Loading…
Reference in New Issue
Block a user