diff options
test - typo - fix spelling of word stubbed
Diffstat (limited to 'test/unit/tx-controller-test.js')
-rw-r--r-- | test/unit/tx-controller-test.js | 4 |
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, |