Skip to content

Commit

Permalink
fix util broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maraoz committed Mar 10, 2014
1 parent 88b85c0 commit 0477b75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down

0 comments on commit 0477b75

Please sign in to comment.