Fix test case typo

Backport loopback-datasource-juggler#1016
This commit is contained in:
Amir Jafarian 2016-07-24 09:05:33 -04:00
parent fc2c429963
commit 5a594d4855
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'));