diff --git a/platform/commonUI/edit/test/services/TransactionManagerSpec.js b/platform/commonUI/edit/test/services/TransactionManagerSpec.js index 628596c390..1fc22cc9d1 100644 --- a/platform/commonUI/edit/test/services/TransactionManagerSpec.js +++ b/platform/commonUI/edit/test/services/TransactionManagerSpec.js @@ -37,13 +37,13 @@ define( mockRemoves = []; mockTransactionService = jasmine.createSpyObj( "transactionService", - [ "addToTransaction", "isActive" ] + ["addToTransaction", "isActive"] ); mockOnCommit = jasmine.createSpy('commit'); mockOnCancel = jasmine.createSpy('cancel'); mockDomainObject = jasmine.createSpyObj( 'domainObject', - [ 'getId', 'getModel', 'getCapability' ] + ['getId', 'getModel', 'getCapability'] ); mockDomainObject.getId.andReturn('testId'); mockPromise = jasmine.createSpyObj('promise', ['then']);