[Code Style] Run gulp fixstyle
...to apply code style settings from #142.
This commit is contained in:
@@ -44,7 +44,7 @@ define(
|
||||
|
||||
mockLog = jasmine.createSpyObj(
|
||||
"$log",
|
||||
[ "error", "warn", "info", "debug" ]
|
||||
["error", "warn", "info", "debug"]
|
||||
);
|
||||
|
||||
mockDomainObject =
|
||||
|
||||
@@ -45,7 +45,7 @@ define(
|
||||
);
|
||||
mockIdentifierService = jasmine.createSpyObj(
|
||||
'identifierService',
|
||||
[ 'parse', 'generate' ]
|
||||
['parse', 'generate']
|
||||
);
|
||||
mockCapabilityConstructor = jasmine.createSpy('capability');
|
||||
mockCapabilityInstance = {};
|
||||
@@ -61,7 +61,7 @@ define(
|
||||
|
||||
mockCacheService = jasmine.createSpyObj(
|
||||
'cacheService',
|
||||
[ 'get', 'put', 'remove', 'all' ]
|
||||
['get', 'put', 'remove', 'all']
|
||||
);
|
||||
|
||||
testModel = { someKey: "some value" };
|
||||
|
||||
@@ -44,4 +44,4 @@ define(
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
);
|
||||
|
||||
@@ -34,7 +34,7 @@ define(
|
||||
testMessage = { someKey: "some value"};
|
||||
mockLog = jasmine.createSpyObj(
|
||||
'$log',
|
||||
[ 'error', 'warn', 'info', 'debug' ]
|
||||
['error', 'warn', 'info', 'debug']
|
||||
);
|
||||
mockCallback = jasmine.createSpy('callback');
|
||||
topic = new Topic(mockLog);
|
||||
|
||||
Reference in New Issue
Block a user