diff options
author | 2012-02-17 07:32:19 +0100 | |
---|---|---|
committer | 2012-02-17 07:32:19 +0100 | |
commit | c99a6c5be7f418726bc9ee233379357c6e5b0294 (patch) | |
tree | ff4f2c9a13e86767850bd536c2298d32d63028d5 /pygithub3/tests | |
parent | Repos collaborators added (diff) | |
download | python-github3-c99a6c5be7f418726bc9ee233379357c6e5b0294.tar.xz python-github3-c99a6c5be7f418726bc9ee233379357c6e5b0294.zip |
Services' renaming: base.Base to base.Service
Diffstat (limited to '')
-rw-r--r-- | pygithub3/tests/services/test_core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/tests/services/test_core.py b/pygithub3/tests/services/test_core.py index 6e5b2b4..ccddee7 100644 --- a/pygithub3/tests/services/test_core.py +++ b/pygithub3/tests/services/test_core.py @@ -6,7 +6,7 @@ from mock import patch import requests -from pygithub3.services.base import Base +from pygithub3.services.base import Service from pygithub3.core.result import Result from pygithub3.tests.utils.base import DummyRequest, mock_response from .utils import _ @@ -16,7 +16,7 @@ from .utils import _ class TestServiceCalls(TestCase): def setUp(self): - self.s = Base() + self.s = Service() self.r = DummyRequest() self.args = dict(arg1='arg1', arg2='arg2') |