Skip to content

Commit

Permalink
Fix prop types for SendGasRow component tests (#7833)
Browse files Browse the repository at this point in the history
  • Loading branch information
whymarrh authored Jan 15, 2020
1 parent be08cfe commit 948a2ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('SendGasRow Component', function () {
<SendGasRow
conversionRate={20}
convertedCurrency="mockConvertedCurrency"
gasFeeError="mockGasFeeError"
gasFeeError
gasLoadingError={false}
gasTotal="mockGasTotal"
gasButtonGroupShown={false}
Expand Down Expand Up @@ -52,7 +52,7 @@ describe('SendGasRow Component', function () {
} = wrapper.find(SendRowWrapper).props()

assert.equal(label, 'transactionFee_t:')
assert.equal(showError, 'mockGasFeeError')
assert.equal(showError, true)
assert.equal(errorType, 'gasFee')
})

Expand Down

0 comments on commit 948a2ce

Please sign in to comment.