[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

@@ -41,7 +41,7 @@ define(
function mockProvider(key, index) {
var provider = jasmine.createSpyObj(
"provider" + index,
[ "requestTelemetry", "subscribe" ]
["requestTelemetry", "subscribe"]
),
unsubscribe = jasmine.createSpy("unsubscribe" + index);
provider.requestTelemetry.andReturn({ someKey: key });
@@ -53,11 +53,11 @@ define(
}
beforeEach(function () {
mockQ = jasmine.createSpyObj("$q", [ "all" ]);
mockQ = jasmine.createSpyObj("$q", ["all"]);
mockQ.all.andReturn(mockPromise([]));
mockUnsubscribes = [];
mockProviders = [ "a", "b", "c" ].map(mockProvider);
mockProviders = ["a", "b", "c"].map(mockProvider);
aggregator = new TelemetryAggregator(mockQ, mockProviders);
});
@@ -121,4 +121,4 @@ define(
});
}
);
);