From 5a594d48555a8e1f033aad8688d976e1dbfc13b4 Mon Sep 17 00:00:00 2001 From: Amir Jafarian Date: Sun, 24 Jul 2016 09:05:33 -0400 Subject: [PATCH] Fix test case typo Backport loopback-datasource-juggler#1016 --- test/manipulation.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/manipulation.test.js b/test/manipulation.test.js index d5793423..1d1a8068 100644 --- a/test/manipulation.test.js +++ b/test/manipulation.test.js @@ -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'));