Skip to content

Commit

Permalink
Fix binary literals formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sourrust committed Apr 18, 2015
1 parent 320e71b commit 07e5870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/regex/number.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('.NUMBER_RE', function() {

it('should not match hex or binary numbers', function() {
var numbers = [ '0xbada55', '0xfa1755', '0x45362e'
, '0b0101' , 'b1100' , 'b1001'
, '0b0101' , '0b1100' , '0b1001'
];

numbers.should.not.match(pattern)
Expand Down

0 comments on commit 07e5870

Please sign in to comment.