Skip to content

Commit c3301de

Browse files
committed
fix lint
1 parent 060827a commit c3301de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_template.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def test_get_templates(self):
2222
options_json = json.load(options)
2323
# Success response
2424
responses.add(
25-
responses.GET,
26-
'{}/sample/v1/templates/quotaplan/{}/{}'.format(BASE_HOST,'US','en'),
27-
json=options_json,
28-
status=200)
25+
responses.GET,
26+
'{}/sample/v1/templates/quotaplan/{}/{}'.format(BASE_HOST,'US','en'),
27+
json=options_json,
28+
status=200)
2929
self.api.get_templates('US', 'en')
3030
self.assertEqual(len(responses.calls), 1)
3131

0 commit comments

Comments
 (0)