summaryrefslogtreecommitdiffstats
path: root/ipatests/test_xmlrpc/test_baseldap_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipatests/test_xmlrpc/test_baseldap_plugin.py')
-rw-r--r--ipatests/test_xmlrpc/test_baseldap_plugin.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/ipatests/test_xmlrpc/test_baseldap_plugin.py b/ipatests/test_xmlrpc/test_baseldap_plugin.py
index 6764b1051..faec5e598 100644
--- a/ipatests/test_xmlrpc/test_baseldap_plugin.py
+++ b/ipatests/test_xmlrpc/test_baseldap_plugin.py
@@ -26,6 +26,7 @@ import ldap
from ipapython.dn import DN
from ipapython import ipaldap
from ipalib import errors
+from ipalib.frontend import Command
from ipalib.plugins import baseldap
from ipatests.util import assert_deepequal
import pytest
@@ -33,7 +34,7 @@ import pytest
@pytest.mark.tier0
def test_exc_wrapper():
- """Test the CallbackInterface._exc_wrapper helper method"""
+ """Test the BaseLDAPCommand._exc_wrapper helper method"""
handled_exceptions = []
class test_callback(baseldap.BaseLDAPCommand):
@@ -77,8 +78,8 @@ def test_exc_wrapper():
@pytest.mark.tier0
def test_callback_registration():
- class callbacktest_base(baseldap.CallbackInterface):
- _callback_registry = dict(test={})
+ class callbacktest_base(Command):
+ callback_types = Command.callback_types + ('test',)
def test_callback(self, param):
messages.append(('Base test_callback', param))