Skip to content

Commit

Permalink
Added destination kwarg
Browse files Browse the repository at this point in the history
ntlhui committed Mar 26, 2023
1 parent 088e594 commit 4c2db75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -141,7 +141,7 @@ def test_add_files_timezone(single_mission: Tuple[Mock, DataManager, Path],
args = split(f'e4edm add --start {start_time.isoformat()} {data_dir.as_posix()}/*')
with patch('sys.argv', args):
main()
mock.add.assert_called_once_with(paths=[], readme=False)
mock.add.assert_called_once_with(paths=[], readme=False, destination=None)


def test_add_files_end(single_mission: Tuple[Mock, DataManager, Path],

0 comments on commit 4c2db75

Please sign in to comment.