Fix the test case

This commit is contained in:
Raymond Feng 2013-07-23 12:59:40 -07:00
parent 484f5270d9
commit 89a2a377c4
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ describe('loopback', function() {
var dataSource = loopback.createDataSource({
connector: loopback.Memory
});
assert(dataSource.connector());
assert(dataSource.connector);
});
});
@ -31,4 +31,4 @@ describe('loopback', function() {
assert.equal(Product.stats.shared, true);
});
});
});
});