From 96f0e4d4caa5abdee90192a1d49ea5b9a0cae172 Mon Sep 17 00:00:00 2001 From: Athitheya Gobinathan Date: Mon, 15 Jul 2024 13:19:06 -0400 Subject: [PATCH] fix: make comment correct --- tests/decryption/test_decrypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/decryption/test_decrypt.py b/tests/decryption/test_decrypt.py index a1d0f0e..5fc4af6 100644 --- a/tests/decryption/test_decrypt.py +++ b/tests/decryption/test_decrypt.py @@ -58,7 +58,7 @@ def key_pair_bytes(self, key_pair): @pytest.fixture() def encrypted_files(self, tmp_path): - """Returns the encrypted file paths and re-encrypts files after use.""" + """Returns temporary copies of encrypted files.""" encrypted_files = [INPUT_DIR/"hello.c4gh", INPUT_DIR/"hello2.c4gh"] temp_files = [tmp_path/"hello.c4gh", tmp_path/"hello2.c4gh"] for src, dest in zip(encrypted_files, temp_files):