[Code Style] Run gulp fixstyle

...to apply code style settings from #142.
This commit is contained in:
Victor Woeltjen
2016-05-19 11:29:13 -07:00
parent f12b9704d9
commit fa77139077
440 changed files with 1885 additions and 1662 deletions

View File

@@ -44,7 +44,7 @@ define(
mockLog = jasmine.createSpyObj(
"$log",
[ "error", "warn", "info", "debug" ]
["error", "warn", "info", "debug"]
);
mockDomainObject =

View File

@@ -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" };

View File

@@ -44,4 +44,4 @@ define(
});
}
);
);

View File

@@ -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);