Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NidhiKJha committed Dec 4, 2023
1 parent aa0a7b2 commit 3b9e722
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions test/e2e/fixture-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ function defaultFixture() {
},
NetworkOrderController: {
orderedNetworkList: [],
},
AccountOrderController: {
pinnedAccountList: [],
},
Expand Down Expand Up @@ -489,16 +490,16 @@ class FixtureBuilder {
return this;
}

withAppStateController(data) {
merge(this.fixture.data.AppStateController, data);
return this;
}

withAccountOrderController(data) {
merge(this.fixture.data.AccountOrderController, data);
return this;
}

withAppStateController(data) {
merge(this.fixture.data.AppStateController, data);
return this;
}

withCachedBalancesController(data) {
merge(this.fixture.data.CachedBalancesController, data);
return this;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"AccountOrderController": { "pinnedAccountList": {} },
"AccountTracker": {
"accounts": "object",
"accountsByChainId": "object"
},
"AccountOrderController": { "pinnedAccountList": {} },
"AccountsController": {
"internalAccounts": { "accounts": "object", "selectedAccount": "string" }
},
Expand Down

0 comments on commit 3b9e722

Please sign in to comment.