1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix function names

This commit is contained in:
Dan Finlay 2017-03-06 15:17:45 -08:00
parent 9bd8c5f723
commit af337dfae5

View File

@ -90,20 +90,20 @@ describe('Personal Message Manager', function() {
describe('#normalizeMsgData', function() { describe('#normalizeMsgData', function() {
it('converts text to a utf8 buffer', function() { it('converts text to a utf8 buffer', function() {
var input = 'hello' var input = 'hello'
var output = messageManager.normalizeMsgdata(input) var output = messageManager.normalizeMsgData(input)
assert.equal(output, '68656c6c6f', 'predictably hex encoded') assert.equal(output, '0x68656c6c6f', 'predictably hex encoded')
}) })
it('tolerates a hex prefix', function() { it('tolerates a hex prefix', function() {
var input = '0x12' var input = '0x12'
var output = messageManager.normalizeMsgdata(input) var output = messageManager.normalizeMsgData(input)
assert.equal(output, '12', 'prefix stripped') assert.equal(output, '12', 'un modified')
}) })
it('tolerates normal hex', function() { it('tolerates normal hex', function() {
var input = '12' var input = '12'
var output = messageManager.normalizeMsgdata(input) var output = messageManager.normalizeMsgData(input)
assert.equal(output, '12', 'not modified') assert.equal(output, '12', 'adds prefix')
}) })
}) })