From 5435a8a32a2e88675e84d22d6f9b97e67f6f5264 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 31 Jul 2015 10:15:01 +0200 Subject: Use absolute imports In Python 3, implicit relative imports will not be supported. Use fully-qualified imports everywhere. Reviewed-By: Tomas Babej --- ipatests/test_xmlrpc/test_ping_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipatests/test_xmlrpc/test_ping_plugin.py') diff --git a/ipatests/test_xmlrpc/test_ping_plugin.py b/ipatests/test_xmlrpc/test_ping_plugin.py index 1d401993a..bdbb91e4f 100644 --- a/ipatests/test_xmlrpc/test_ping_plugin.py +++ b/ipatests/test_xmlrpc/test_ping_plugin.py @@ -23,7 +23,7 @@ Test the `ipalib/plugins/ping.py` module, and XML-RPC in general. from ipalib import api, errors, messages, _ from ipatests.util import Fuzzy -from xmlrpc_test import Declarative +from ipatests.test_xmlrpc.xmlrpc_test import Declarative from ipapython.version import API_VERSION -- cgit