Skip to content

Commit 50e5de3

Browse files
committed
Remove unnecessary 'as any' type assertions
1 parent b79b505 commit 50e5de3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/delegator-e2e/test/caveats/caveatUtils.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ describe('MultiTokenPeriodEnforcer', () => {
730730
startDate: futureStartDate,
731731
},
732732
],
733-
} as any)
733+
})
734734
.build(),
735735
salt: '0x1' as Hex,
736736
signature: '0x1',
@@ -818,7 +818,7 @@ describe('MultiTokenPeriodEnforcer', () => {
818818
startDate,
819819
},
820820
],
821-
} as any)
821+
})
822822
.build(),
823823
salt: '0x1' as Hex,
824824
signature: '0x1',
@@ -1516,7 +1516,7 @@ describe('Individual action functions vs client extension methods', () => {
15161516
startDate: currentTime,
15171517
},
15181518
],
1519-
} as any)
1519+
})
15201520
.build(),
15211521
salt: '0x1' as Hex,
15221522
signature: '0x1',

0 commit comments

Comments
 (0)