Merge pull request #186 from albertoleal/RemoveUnnecessaryLines

Remove unnecessary lines
This commit is contained in:
Raymond Feng 2014-02-21 09:06:11 -08:00
commit 1717729efc
1 changed files with 0 additions and 2 deletions

View File

@ -46,7 +46,6 @@ describe('app', function() {
});
it('uses plural name as shared class name', function() {
loopback.compat.usePluralNamesForRemoting = true;
var Color = db.createModel('color', {name: String});
app.model(Color);
expect(app.remotes().exports).to.eql({ colors: Color });
@ -57,7 +56,6 @@ describe('app', function() {
app.model(Color);
expect(app.remoteObjects()).to.eql({ colors: Color });
});
;
});
});