Skip to content

Commit c8a7b74

Browse files
authored
fix: Blockfinder tests using deprecated goerli (#989)
1 parent 1d2e113 commit c8a7b74

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/e2e/utils/blockfinder.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ describe('Test block finder', () => {
66
const provider = getProvider('1');
77
test('getSnapshots should work without errors and return object', async () => {
88
expect(
9-
await getSnapshots('1', 17789783, provider, ['5', '137'])
9+
await getSnapshots('1', 17789783, provider, ['11155111', '137'])
1010
).toMatchObject({
1111
'1': 17789783,
1212
'137': 45609596,
13-
'5': 9421169
13+
'11155111': 3979201
1414
});
1515
});
1616
test('getSnapshots should return all latest if snapshot is latest', async () => {
1717
expect(
18-
await getSnapshots('1', 'latest', provider, ['5', '137'])
18+
await getSnapshots('1', 'latest', provider, ['11155111', '137'])
1919
).toMatchObject({
2020
'137': 'latest',
21-
'5': 'latest'
21+
'11155111': 'latest'
2222
});
2323
});
2424
});

0 commit comments

Comments
 (0)