1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00

Merge branch 'master' into i1144-moarrpc

This commit is contained in:
Kevin Serrano 2017-03-07 12:47:25 -08:00 committed by GitHub
commit 8fead4099a

View File

@ -88,7 +88,7 @@ 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 hex string', function() {
var input = 'hello' var input = 'hello'
var output = messageManager.normalizeMsgData(input) var output = messageManager.normalizeMsgData(input)
assert.equal(output, '0x68656c6c6f', 'predictably hex encoded') assert.equal(output, '0x68656c6c6f', 'predictably hex encoded')