Skip to content

Commit 8447a55

Browse files
committed
Fix flake8
1 parent 5e4c714 commit 8447a55

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/servicex_did_finder_lib/test_communication.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,12 +377,16 @@ async def my_user_callback(did, info):
377377
SXAdaptor.post_transform_start.assert_called_once()
378378

379379
assert SXAdaptor.put_file_add.call_count == 1
380-
assert SXAdaptor.put_file_add.call_args_list[0][0][0]['paths'] == ['/tmp/bar', 'others:/tmp/bar']
380+
assert SXAdaptor.put_file_add.call_args_list[0][0][0]['paths'] == [
381+
'/tmp/bar',
382+
'others:/tmp/bar'
383+
]
381384

382385
SXAdaptor.put_fileset_complete.assert_called_once
383386
assert SXAdaptor.put_fileset_complete.call_args[0][0]['files'] == 1
384387
assert SXAdaptor.post_status_update.called_once()
385388

389+
386390
@pytest.mark.asyncio
387391
async def test_run_file_fetch_loop_bad_did(SXAdaptor, mocker):
388392
async def my_user_callback(did, info):

0 commit comments

Comments
 (0)