Fix the style issue

This commit is contained in:
Raymond Feng 2015-04-02 08:45:04 -07:00
parent 9af828efd4
commit 64ccb785c2
1 changed files with 0 additions and 2 deletions

View File

@ -707,13 +707,11 @@ describe('relations - integration', function() {
it('deletes an embedded model', function(done) { it('deletes an embedded model', function(done) {
var url = '/api/groups/' + this.group.id + '/cover'; var url = '/api/groups/' + this.group.id + '/cover';
this.del(url).expect(204, done); this.del(url).expect(204, done);
}); });
it('deleted the embedded model', function(done) { it('deleted the embedded model', function(done) {
var url = '/api/groups/' + this.group.id + '/cover'; var url = '/api/groups/' + this.group.id + '/cover';
this.get(url).expect(404, done); this.get(url).expect(404, done);
}); });