summaryrefslogtreecommitdiff
path: root/tests/test-libaccountsservice.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-libaccountsservice.py')
-rw-r--r--tests/test-libaccountsservice.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-libaccountsservice.py b/tests/test-libaccountsservice.py
index 723ab51..f0261b1 100644
--- a/tests/test-libaccountsservice.py
+++ b/tests/test-libaccountsservice.py
@@ -39,7 +39,7 @@ class AccountsServiceTestBase(dbusmock.DBusTestCase):
super().setUp()
if not hasattr(self, '_mock'):
template = os.path.join(
- os.path.dirname(__file__), 'dbusmock/accounts_service.py')
+ os.path.dirname(__file__), 'mock_services/accounts_service.py')
(self._mock, self._mock_obj) = self.spawn_server_template(
template, {}, stdout=subprocess.PIPE)
self._manager = AccountsService.UserManager.get_default()
@@ -88,7 +88,7 @@ class TestAccountsServicePreExistingUser(AccountsServiceTestBase):
'''Test mocking AccountsService with pre-existing user'''
def setUp(self):
template = os.path.join(
- os.path.dirname(__file__), 'dbusmock/accounts_service.py')
+ os.path.dirname(__file__), 'mock_services/accounts_service.py')
(self._mock, self._mock_obj) = self.spawn_server_template(
template, {'users': { 2001: 'pizza' }}, stdout=subprocess.PIPE)
super().setUp()