Skip to content

Commit

Permalink
Fix lint violations
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire committed Jul 19, 2024
1 parent a5dffe8 commit 32634ea
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/network-controller/tests/NetworkController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6211,7 +6211,9 @@ describe('NetworkController', () => {
});

expect(
controller.state.networkConfigurationsByChainId[infuraChainId],
controller.state.networkConfigurationsByChainId[
infuraChainId
],
).toStrictEqual({
...networkConfigurationToUpdate,
rpcEndpoints: [rpcEndpoint3, rpcEndpoint1, rpcEndpoint2],
Expand Down Expand Up @@ -8302,7 +8304,8 @@ describe('NetworkController', () => {
state: {
networkConfigurationsByChainId: {
'0x1337': networkConfigurationToUpdate,
[infuraChainId]: buildInfuraNetworkConfiguration(infuraNetworkType),
[infuraChainId]:
buildInfuraNetworkConfiguration(infuraNetworkType),
'0x9999': buildCustomNetworkConfiguration({
chainId: '0x9999',
nativeCurrency: 'TEST-9999',
Expand Down Expand Up @@ -10285,7 +10288,7 @@ describe('NetworkController', () => {
'0x1337': networkConfigurationToUpdate,
'0x2448': buildNetworkConfiguration({
name: 'Some Network',
chainId: '0x2448'
chainId: '0x2448',
}),
'0x9999': buildCustomNetworkConfiguration({
chainId: '0x9999',
Expand Down

0 comments on commit 32634ea

Please sign in to comment.