diff options
Diffstat (limited to 'ipatests/test_ipalib/test_output.py')
-rw-r--r-- | ipatests/test_ipalib/test_output.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipatests/test_ipalib/test_output.py b/ipatests/test_ipalib/test_output.py index e722a973d..1161e649a 100644 --- a/ipatests/test_ipalib/test_output.py +++ b/ipatests/test_ipalib/test_output.py @@ -71,9 +71,10 @@ class test_ListOfEntries(ClassChecker): """ Test the `ipalib.output.ListOfEntries.validate` method. """ + api = 'the api instance' class example(Command): pass - cmd = example() + cmd = example(api) inst = self.cls('stuff') okay = dict(foo='bar') |