diff --git a/src/documents/tests/test_management_importer.py b/src/documents/tests/test_management_importer.py index aa76ffadb..9d07e8a60 100644 --- a/src/documents/tests/test_management_importer.py +++ b/src/documents/tests/test_management_importer.py @@ -126,14 +126,14 @@ class TestCommandImport( }, ] with self.assertRaises(CommandError) as cm: - cmd._check_manifest_valid() + cmd._check_manifest_files_valid() self.assertInt("Failed to read from original file", str(cm.exception)) original_path.chmod(0o444) archive_path.chmod(0o222) with self.assertRaises(CommandError) as cm: - cmd._check_manifest_valid() + cmd._check_manifest_files_valid() self.assertInt("Failed to read from archive file", str(cm.exception)) def test_import_source_not_existing(self):