Remove unnecessary lines

This commit is contained in:
Alberto Leal 2014-02-17 14:05:04 -03:00
parent e56574fd13
commit 6eecaa78a3
1 changed files with 0 additions and 2 deletions

View File

@ -38,7 +38,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 });
@ -49,7 +48,6 @@ describe('app', function() {
app.model(Color);
expect(app.remoteObjects()).to.eql({ colors: Color });
});
;
});
});