[Persistence] Fix code style

This commit is contained in:
Victor Woeltjen
2016-07-14 16:49:31 -07:00
parent d263b80810
commit 550e60455b

View File

@@ -37,13 +37,13 @@ define(
mockRemoves = []; mockRemoves = [];
mockTransactionService = jasmine.createSpyObj( mockTransactionService = jasmine.createSpyObj(
"transactionService", "transactionService",
[ "addToTransaction", "isActive" ] ["addToTransaction", "isActive"]
); );
mockOnCommit = jasmine.createSpy('commit'); mockOnCommit = jasmine.createSpy('commit');
mockOnCancel = jasmine.createSpy('cancel'); mockOnCancel = jasmine.createSpy('cancel');
mockDomainObject = jasmine.createSpyObj( mockDomainObject = jasmine.createSpyObj(
'domainObject', 'domainObject',
[ 'getId', 'getModel', 'getCapability' ] ['getId', 'getModel', 'getCapability']
); );
mockDomainObject.getId.andReturn('testId'); mockDomainObject.getId.andReturn('testId');
mockPromise = jasmine.createSpyObj('promise', ['then']); mockPromise = jasmine.createSpyObj('promise', ['then']);