Skip to content

Commit

Permalink
Fix a typo in the ‘port’ test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
František Hába committed Mar 8, 2012
1 parent 38a7412 commit 708070a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/json/attributes/format/port.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ suite('JSON/Attribute/format#array', function() {
].forEach(function(data) {
Validator.validate(data, schema, function(error) {
count += 1;
expect(error).to.be.not.ok();
expect(error).to.not.be.ok();
});
});
});

test('should run 3 times', function() {
expect(count).to.be.eql(3;
expect(count).to.be.eql(3);
});

};
});

0 comments on commit 708070a

Please sign in to comment.