Skip to content

Commit

Permalink
typo fix Update safe.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalikBerashvili authored Jan 2, 2025
1 parent 934b4ea commit 5f924a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/safe-apps-sdk/src/safe/safe.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ describe('Safe Apps SDK safe methods', () => {
expect(await sdkInstance.safe.check1271Signature(message)).toEqual(true);
});

test('Should return false if the message isnt signed and underlying call reverts', async () => {
test('Should return false if the message isn't signed and underlying call reverts', async () => {
const safeInfoSpy = jest.spyOn(sdkInstance.safe, 'getInfo');
// @ts-expect-error method is private but we are testing it
const rpcCallSpy = jest.spyOn(sdkInstance.safe.communicator, 'send');
Expand Down

0 comments on commit 5f924a0

Please sign in to comment.