Skip to content

Commit ba10346

Browse files
committed
Fix test
1 parent 274a18d commit ba10346

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/snaps-utils/src/snaps.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import { uri, WALLET_SNAP_PERMISSION_KEY } from './types';
2222
describe('isSnapId', () => {
2323
it.each(['npm:@metamask/test-snap-bip44', 'local:http://localhost:8000'])(
2424
'returns `true` for "%s"',
25-
() => {
26-
expect(isSnapId('npm:@metamask/test-snap-bip44')).toBe(true);
25+
(value) => {
26+
expect(isSnapId(value)).toBe(true);
2727
},
2828
);
2929

0 commit comments

Comments
 (0)