diff options
Diffstat (limited to 'ipalib/tests/test_plugable.py')
-rw-r--r-- | ipalib/tests/test_plugable.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ipalib/tests/test_plugable.py b/ipalib/tests/test_plugable.py index e69060b3..8c0b4b42 100644 --- a/ipalib/tests/test_plugable.py +++ b/ipalib/tests/test_plugable.py @@ -21,7 +21,7 @@ Unit tests for `ipalib.plugable` module. """ -import unit_common as uc +import tstutil from ipalib import plugable, errors @@ -57,17 +57,17 @@ def test_ReadOnly(): obj = plugable.ReadOnly() names = ['not_an_attribute', 'an_attribute'] for name in names: - uc.no_set(obj, name) - uc.no_del(obj, name) + tstutil.no_set(obj, name) + tstutil.no_del(obj, name) class some_ro_class(plugable.ReadOnly): def __init__(self): object.__setattr__(self, 'an_attribute', 'Hello world!') obj = some_ro_class() for name in names: - uc.no_set(obj, name) - uc.no_del(obj, name) - assert uc.read_only(obj, 'an_attribute') == 'Hello world!' + tstutil.no_set(obj, name) + tstutil.no_del(obj, name) + assert tstutil.read_only(obj, 'an_attribute') == 'Hello world!' def test_Proxy(): |