fix util broken tests

This commit is contained in:
Manuel Araoz 2014-03-10 10:00:37 -03:00
parent 88b85c02fd
commit 0477b75de4
1 changed files with 5 additions and 5 deletions

View File

@ -49,11 +49,11 @@ describe('util', function() {
});
describe('#intToBuffer', function() {
var data = [
[0, '00000000'],
[-0, '00000000'],
[-1, 'ffffffff'],
[1, '01000000'],
[18, '12000000'],
[0, '00'],
[-0, '00'],
[-1, 'ff'],
[1, '01'],
[18, '12'],
[878082192, '90785634'],
[0x01234567890, '1200000090785634'],
[-4294967297, 'feffffffffffffff'],