@@ -20,7 +20,6 @@ const isFirefox = process.env.SELENIUM_BROWSER === Browser.FIREFOX;
2020
2121describe ( 'Token List' , function ( ) {
2222 const chainId = CHAIN_IDS . MAINNET ;
23- const lineaChainId = CHAIN_IDS . LINEA_MAINNET ;
2423 const tokenAddress = '0x2EFA2Cb29C2341d8E5Ba7D3262C9e9d6f1Bf3711' ;
2524 const symbol = 'foo' ;
2625
@@ -37,8 +36,7 @@ describe('Token List', function () {
3736 ...fixtures ,
3837 title : ( this as Context ) . test ?. fullTitle ( ) ,
3938 testSpecificMock : async ( mockServer : Mockttp ) => [
40- await mockEmptyPrices ( mockServer , chainId ) ,
41- await mockEmptyPrices ( mockServer , lineaChainId ) ,
39+ await mockEmptyPrices ( mockServer ) ,
4240 await mockEmptyHistoricalPrices ( mockServer , tokenAddress , chainId ) ,
4341 ] ,
4442 } ,
@@ -84,9 +82,9 @@ describe('Token List', function () {
8482 title : ( this as Context ) . test ?. fullTitle ( ) ,
8583 ethConversionInUsd,
8684 testSpecificMock : async ( mockServer : Mockttp ) => [
87- await mockSpotPrices ( mockServer , chainId , {
88- [ zeroAddress ( ) ] : marketDataNative ,
89- [ tokenAddress . toLowerCase ( ) ] : marketData ,
85+ await mockSpotPrices ( mockServer , {
86+ 'eip155:1/slip44:60' : marketDataNative ,
87+ [ `eip155:1/erc20: ${ tokenAddress . toLowerCase ( ) } ` ] : marketData ,
9088 } ) ,
9189 await mockHistoricalPrices ( mockServer , {
9290 address : tokenAddress ,
0 commit comments