Skip to content

Commit ea05804

Browse files
authored
standardize on manifest.json as the entry-point manifest for test vectors (#95)
1 parent 83a904e commit ea05804

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test_vector_handlers/src/awses_test_vectors/manifests/full_message/encrypt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,5 @@ def run_and_write_to_dir(self, target_directory, json_indent=None):
239239
)
240240

241241
root_writer(
242-
"decrypt_message.json", json.dumps(decrypt_manifest.manifest_spec, indent=json_indent).encode(ENCODING)
242+
"manifest.json", json.dumps(decrypt_manifest.manifest_spec, indent=json_indent).encode(ENCODING)
243243
)

test_vector_handlers/test/integration/commands/test_i_full_message_encrypt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ def test_full_message_cycle_canonical_full(tmpdir, full_message_encrypt_vectors)
3131
output_dir = tmpdir.join("output")
3232
full_message_encrypt.cli(["--output", str(output_dir), "--input", full_message_encrypt_vectors])
3333

34-
decrypt_manifest_file = output_dir.join("decrypt_message.json")
34+
decrypt_manifest_file = output_dir.join("manifest.json")
3535
full_message_decrypt.cli(["--input", str(decrypt_manifest_file)])

0 commit comments

Comments
 (0)