aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/tests
diff options
context:
space:
mode:
Diffstat (limited to 'pygithub3/tests')
-rw-r--r--pygithub3/tests/services/test_core.py4
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')