Merge pull request #1018 from strongloop/fix_test_type_2.x

Fix test typo[2.x]
This commit is contained in:
Amir-61 2016-07-24 09:10:36 -04:00 committed by GitHub
commit 8a07627c81
1 changed files with 1 additions and 1 deletions

View File

@ -1622,7 +1622,7 @@ describe('manipulation', function() {
p1.should.have.property('married', undefined);
});
it('should coerce boolean types properly', function() {
it('should coerce date types properly', function() {
var p1 = new Person({ name: 'John', dob: '2/1/2015' });
p1.dob.should.eql(new Date('2/1/2015'));