Skip to content

Commit 0a9d05a

Browse files
author
Agnes Lin
committed
fix schema name with pascal case
1 parent c0b7d3d commit 0a9d05a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/postgresql.discover.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ describe('Discover and map correctly database types', function() {
354354
describe('Discover and build models', function() {
355355
it('should build a model from discovery', function(done) {
356356
db.discoverAndBuildModels('GeoPoint', {schema: 'strongloop'}, function(err, schema) {
357-
schema.Geopoint.find(function(err, data) {
357+
schema.GeoPoint.find(function(err, data) {
358358
console.log('This is our err: ', err);
359359
assert(!err);
360360
assert(Array.isArray(data));

0 commit comments

Comments
 (0)