Improve readability

This commit is contained in:
Daniel García Aubert 2017-06-12 19:22:37 +02:00
parent 7b5111614c
commit 75d07745e6

View File

@ -217,7 +217,8 @@ describe.only('aggregation-dataview: special float values', function() {
] ]
); );
[{ own_filter: 0 }, {}].forEach(function (filter) { var filters = [{ own_filter: 0 }, {}];
filters.forEach(function (filter) {
it('should handle special float values using filter: ' + JSON.stringify(filter), function(done) { it('should handle special float values using filter: ' + JSON.stringify(filter), function(done) {
this.testClient = new TestClient(mapConfig, 1234); this.testClient = new TestClient(mapConfig, 1234);
this.testClient.getDataview('val_aggregation', { own_filter: 0 }, function(err, dataview) { this.testClient.getDataview('val_aggregation', { own_filter: 0 }, function(err, dataview) {