pycodestyle
This commit is contained in:
parent
efd34b0fd0
commit
b6cd1d37b8
2 changed files with 4 additions and 3 deletions
|
@ -99,6 +99,7 @@ class TestSchleuderApi(unittest.TestCase):
|
|||
def _mock_api(self, mock):
|
||||
m = MagicMock()
|
||||
m.getcode.return_value = 200
|
||||
|
||||
def read():
|
||||
url = mock.call_args_list[-1][0][0].get_full_url()
|
||||
if 'lists.json' in url:
|
||||
|
@ -231,4 +232,3 @@ class TestSchleuderApi(unittest.TestCase):
|
|||
api.get_subscribers(sch)
|
||||
api.get_key('2FBBC0DF97FDBF1E4B704EEDE39EF4FAC420BEB6', sch)
|
||||
self.assertLess(0, len(mock.call_args_list))
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ from dateutil.tz import tzutc
|
|||
from multischleuder.types import SchleuderKey, SchleuderList, SchleuderSubscriber
|
||||
from multischleuder.test.test_api import _KEY_RESPONSE, _LIST_RESPONSE, _SUBSCRIBER_RESPONSE
|
||||
|
||||
|
||||
class TestSchleuderTypes(unittest.TestCase):
|
||||
|
||||
def test_parse_list(self):
|
||||
|
|
Loading…
Reference in a new issue