core: Fix tests of plugins using user id for checking capabilities.

This commit is contained in:
Valentin Lorentz 2013-01-05 19:06:49 +01:00
parent db48d78050
commit bc7051e515

View File

@ -1046,7 +1046,8 @@ def checkCapability(hostmask, capability, users=users, channels=channels,
ignoreOwner=False): ignoreOwner=False):
"""Checks that the user specified by name/hostmask has the capability given. """Checks that the user specified by name/hostmask has the capability given.
""" """
if world.testing and ('@' not in hostmask or if world.testing and (not isinstance(hostmask, str) or
'@' not in hostmask or
'__no_testcap__' not in hostmask.split('@')[1]): '__no_testcap__' not in hostmask.split('@')[1]):
return _x(capability, True) return _x(capability, True)
try: try: