Skip to content

Commit d1d4c6b

Browse files
committed
break long lines
1 parent d20699f commit d1d4c6b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

specs/namespaces/namespaces_spec.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,16 +285,20 @@
285285
))
286286

287287
with it('.travel.trip_parser_jobs.post_from_base64'):
288-
self.client.travel.trip_parser_jobs.post(self.client.travel.from_base64('dGVzdA=='))
288+
self.client.travel.trip_parser_jobs.post(
289+
self.client.travel.from_base64('dGVzdA=='))
289290
expect(self.client.post).to(have_been_called_with(
290-
'/v2/travel/trip-parser-jobs', {'data': {'type': 'trip-parser-job', 'content': 'dGVzdA=='}}
291+
'/v2/travel/trip-parser-jobs',
292+
{'data': {'type': 'trip-parser-job', 'content': 'dGVzdA=='}}
291293
))
292294

293295
with it('.travel.trip_parser_jobs.post_from_file'):
294296
file = 'specs/namespaces/trip_parser_test.eml'
295-
self.client.travel.trip_parser_jobs.post(self.client.travel.from_file(file))
297+
self.client.travel.trip_parser_jobs.post(
298+
self.client.travel.from_file(file))
296299
expect(self.client.post).to(have_been_called_with(
297-
'/v2/travel/trip-parser-jobs', {'data': {'type': 'trip-parser-job', 'content': 'Qm9va2luZwo='}}
300+
'/v2/travel/trip-parser-jobs',
301+
{'data': {'type': 'trip-parser-job', 'content': 'Qm9va2luZwo='}}
298302
))
299303

300304
with it('.shopping.flight_offers_search.post'):

0 commit comments

Comments
 (0)