From 514589d0c5071dc05b112304980764f47bfd9e7c Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 31 May 2024 10:17:27 -0700 Subject: [PATCH] fix --- src/documents/tests/test_management_importer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):