Skip to content

Commit

Permalink
standardize on manifest.json as the entry-point manifest for test vec…
Browse files Browse the repository at this point in the history
…tors (#95)
  • Loading branch information
mattsb42-aws committed Nov 7, 2018
1 parent 83a904e commit ea05804
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
Original file line number Diff line number Diff line change
Expand Up @@ -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)])

0 comments on commit ea05804

Please sign in to comment.