We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9f0904 commit bff23caCopy full SHA for bff23ca
test/unit/pgp.test.ts
@@ -18,9 +18,8 @@ describe("pgp", () => {
18
19
it("reads bundled public keys", async () => {
20
const keys = await pgp.readPublicKeys();
21
- expect(keys.length).toBe(2);
22
- expect(keys[0].getKeyID().toHex()).toBe("8bced87dbbb8644b");
23
- expect(keys[1].getKeyID().toHex()).toBe("6a5a671b5e40a3b9");
+ expect(keys.length).toBe(1);
+ expect(keys[0].getKeyID().toHex()).toBe("6a5a671b5e40a3b9");
24
});
25
26
it("cannot read non-existent signature", async () => {
0 commit comments