aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-dropdown-list
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-05-14 17:31:41 +0800
committerDan <danjm.com@gmail.com>2018-05-14 17:31:41 +0800
commitc2ed2d4e5003abd01552570452a5b0b38626abca (patch)
tree4d5e0a96cb75f3fdb2812e11c10a61b2e0a68d32 /ui/app/components/send_/send-content/send-dropdown-list
parent145e53b404af6adb49fba2636474455aba86ff81 (diff)
downloadtangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.tar.gz
tangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.tar.zst
tangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.zip
Lint fixes
Diffstat (limited to 'ui/app/components/send_/send-content/send-dropdown-list')
-rw-r--r--ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js b/ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js
index 44de529d4..b92dd4dfe 100644
--- a/ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js
+++ b/ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js
@@ -15,7 +15,6 @@ sinon.spy(SendDropdownList.prototype, 'getListItemIcon')
describe('SendDropdownList Component', function () {
let wrapper
- let instance
beforeEach(() => {
wrapper = shallow(<SendDropdownList
@@ -28,7 +27,6 @@ describe('SendDropdownList Component', function () {
onSelect={propsMethodSpies.onSelect}
activeAddress={'mockAddress2'}
/>, { context: { t: str => str + '_t' } })
- instance = wrapper.instance()
})
afterEach(() => {
@@ -81,7 +79,6 @@ describe('SendDropdownList Component', function () {
account,
className,
handleClick,
- icon,
} = accountListItem.props()
assert.deepEqual(account, { address: 'mockAccount' + index })
assert.equal(className, 'account-list-item__dropdown')