Fix terminology.

This commit is contained in:
Justus Winter 2024-08-29 11:34:43 +02:00
parent 8f33b87216
commit 945757684c
No known key found for this signature in database
GPG Key ID: 686F55B4AB2B3386
2 changed files with 2 additions and 2 deletions

View File

@ -323,7 +323,7 @@ impl<'c, 'store, 'rstore> VHelper<'c, 'store, 'rstore> {
0 => "checksum".into(),
n => format!("level {} notarizing checksum", n),
};
wprintln!("No key to check {} from {}", what, issuer);
wprintln!("No cert to check {} from {}", what, issuer);
wprintln!("Consider running `sq network fetch {}`.", issuer);
self.unknown_checksums += 1;
continue;

View File

@ -1054,7 +1054,7 @@ fn sq_sign_using_cert_store() -> Result<()> {
assert!(! output.status.success(),
"stdout:\n{}\nstderr: {}", stdout, stderr);
assert!(stderr.contains("No key to check checksum from "),
assert!(stderr.contains("No cert to check checksum from "),
"stdout:\n{}\nstderr: {}", stdout, stderr);
assert!(stderr.contains("Error: Verification failed"),
"stdout:\n{}\nstderr: {}", stdout, stderr);