From 7a09c7807043b2dd770ed2eb90878878886af0e2 Mon Sep 17 00:00:00 2001 From: Athitheya Gobinathan Date: Mon, 8 Jul 2024 16:47:06 -0400 Subject: [PATCH] docs: make comment more descriptive --- 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 0fb2b73..0588709 100644 --- a/tests/decryption/test_decrypt.py +++ b/tests/decryption/test_decrypt.py @@ -63,7 +63,7 @@ def encrypted_files(self, key_pair_bytes): """Returns the encrypted file paths and re-encrypts files after use.""" encrypted_files = [INPUT_DIR/"hello.c4gh", INPUT_DIR/"hello2.c4gh"] yield encrypted_files - # Re-encrypt files after decryption + # Re-encrypt files after decryption to ensure files are encrypted for each test sk, pk = key_pair_bytes for file_path in encrypted_files: with open(file_path, "rb") as f_in, NamedTemporaryFile() as f_out: