[Code Style] Run fixstyle on merged changes

This commit is contained in:
Victor Woeltjen
2016-05-20 13:09:16 -07:00
parent bce5643994
commit 9861e63589
3 changed files with 9 additions and 9 deletions

View File

@@ -60,7 +60,7 @@ define(
'getCapability'
]);
mockDomainObject.getCapability.andCallFake(function (name) {
return capabilities[name];
return capabilities[name];
});
mockPolicyService = jasmine.createSpyObj('policyService', [
@@ -86,7 +86,7 @@ define(
expect(mockScope.regions.length).toBe(2);
});
it("Responds to status changes", function() {
it("Responds to status changes", function () {
mockPolicyService.allow.andReturn(true);
controller = new InspectorController(mockScope, mockPolicyService);
expect(mockScope.regions.length).toBe(2);
@@ -96,7 +96,7 @@ define(
expect(mockScope.regions.length).toBe(0);
});
it("Unregisters status listener", function() {
it("Unregisters status listener", function () {
var mockListener = jasmine.createSpy('listener');
mockStatusCapability.listen.andReturn(mockListener);
controller = new InspectorController(mockScope, mockPolicyService);