diff --git a/tests/cmdline/commands/test_archive_import.py b/tests/cmdline/commands/test_archive_import.py index 683486017f..ed81b10c8c 100644 --- a/tests/cmdline/commands/test_archive_import.py +++ b/tests/cmdline/commands/test_archive_import.py @@ -49,10 +49,13 @@ def test_import_archive(run_cli_command, newest_archive): run_cli_command(cmd_archive.import_archive, options) -@pytest.mark.parametrize('archive', ( - get_archive_file('arithmetic.add.aiida', filepath='calcjob'), - get_archive_file('export_0.9_simple.aiida', filepath=ARCHIVE_PATH), -)) +@pytest.mark.parametrize( + 'archive', + ( + get_archive_file('arithmetic.add.aiida', filepath='calcjob'), + get_archive_file('export_0.9_simple.aiida', filepath=ARCHIVE_PATH), + ), +) def test_import_dry_run(run_cli_command, archive): """Test import dry-run""" result = run_cli_command(cmd_archive.import_archive, [archive, '--dry-run'])