aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/tx-controller-test.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2018-01-18 11:47:35 +0800
committerkumavis <aaron@kumavis.me>2018-01-18 11:47:35 +0800
commitd1d745eef4f8270a144e13af23c009773c3f3598 (patch)
tree4fcefbcc54e8e1e658f4da97428c045220d28e20 /test/unit/tx-controller-test.js
parent3cbf2b7e3e8608ec5f79ffd64cc15bc633ef2466 (diff)
downloadtangerine-wallet-browser-d1d745eef4f8270a144e13af23c009773c3f3598.tar.gz
tangerine-wallet-browser-d1d745eef4f8270a144e13af23c009773c3f3598.tar.zst
tangerine-wallet-browser-d1d745eef4f8270a144e13af23c009773c3f3598.zip
test - typo - fix spelling of word stubbed
Diffstat (limited to 'test/unit/tx-controller-test.js')
-rw-r--r--test/unit/tx-controller-test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/tx-controller-test.js b/test/unit/tx-controller-test.js
index 882a15334..d0f101e44 100644
--- a/test/unit/tx-controller-test.js
+++ b/test/unit/tx-controller-test.js
@@ -6,7 +6,7 @@ const ObservableStore = require('obs-store')
const sinon = require('sinon')
const TransactionController = require('../../app/scripts/controllers/transactions')
const TxGasUtils = require('../../app/scripts/lib/tx-gas-utils')
-const { createStubedProvider } = require('../stub/provider')
+const { createStubbedProvider } = require('../stub/provider')
const noop = () => true
const currentNetworkId = 42
@@ -19,7 +19,7 @@ describe('Transaction Controller', function () {
beforeEach(function () {
providerResultStub = {}
- provider = createStubedProvider(providerResultStub)
+ provider = createStubbedProvider(providerResultStub)
txController = new TransactionController({
provider,