diff --git a/test_vector_handlers/src/awses_test_vectors/manifests/full_message/encrypt.py b/test_vector_handlers/src/awses_test_vectors/manifests/full_message/encrypt.py index a6e112fc9..bad946de4 100644 --- a/test_vector_handlers/src/awses_test_vectors/manifests/full_message/encrypt.py +++ b/test_vector_handlers/src/awses_test_vectors/manifests/full_message/encrypt.py @@ -239,5 +239,5 @@ def run_and_write_to_dir(self, target_directory, json_indent=None): ) root_writer( - "decrypt_message.json", json.dumps(decrypt_manifest.manifest_spec, indent=json_indent).encode(ENCODING) + "manifest.json", json.dumps(decrypt_manifest.manifest_spec, indent=json_indent).encode(ENCODING) ) diff --git a/test_vector_handlers/test/integration/commands/test_i_full_message_encrypt.py b/test_vector_handlers/test/integration/commands/test_i_full_message_encrypt.py index 9338e5bcb..3c8fcdcc0 100644 --- a/test_vector_handlers/test/integration/commands/test_i_full_message_encrypt.py +++ b/test_vector_handlers/test/integration/commands/test_i_full_message_encrypt.py @@ -31,5 +31,5 @@ def test_full_message_cycle_canonical_full(tmpdir, full_message_encrypt_vectors) output_dir = tmpdir.join("output") full_message_encrypt.cli(["--output", str(output_dir), "--input", full_message_encrypt_vectors]) - decrypt_manifest_file = output_dir.join("decrypt_message.json") + decrypt_manifest_file = output_dir.join("manifest.json") full_message_decrypt.cli(["--input", str(decrypt_manifest_file)])