Skip to content

Commit 6370fa7

Browse files
committed
proto-signing: s/jasmine.objectContaining/expect.objectContaining/
1 parent 7cacf1c commit 6370fa7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/proto-signing/src/decode.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe("decode", () => {
3232

3333
const decoded = decodeTxRaw(fromHex(testVector.outputs.signedTxBytes));
3434
expect(decoded).toEqual({
35-
authInfo: jasmine.objectContaining({
35+
authInfo: expect.objectContaining({
3636
signerInfos: [
3737
{
3838
publicKey: {

packages/proto-signing/src/directsecp256k1hdwallet.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ describe("DirectSecp256k1HdWallet", () => {
297297
encryption: {
298298
algorithm: "xchacha20poly1305-ietf",
299299
},
300-
data: jasmine.stringMatching(base64Matcher),
300+
data: expect.stringMatching(base64Matcher),
301301
});
302302
});
303303
});
@@ -322,7 +322,7 @@ describe("DirectSecp256k1HdWallet", () => {
322322
encryption: {
323323
algorithm: "xchacha20poly1305-ietf",
324324
},
325-
data: jasmine.stringMatching(base64Matcher),
325+
data: expect.stringMatching(base64Matcher),
326326
});
327327
});
328328
});

packages/proto-signing/src/registry.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ describe("registry demo", () => {
9696
const decoder = registry.lookupType(msg.typeUrl)!;
9797
const msgDemoDecoded = decoder.decode(msg.value);
9898
expect(msgDemoDecoded).toEqual(
99-
jasmine.objectContaining({
99+
expect.objectContaining({
100100
creator: "Me",
101101
title: "Something with stars",
102102
body: "la la la",

0 commit comments

Comments
 (0)