Skip to content

Commit f3bde25

Browse files
Apply suggestions from code review
Co-authored-by: Clint Beacock <clint.beacock@gmail.com>
1 parent f07bd18 commit f3bde25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/report.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ class Report {
417417
endDate,
418418
},
419419
};
420-
}
420+
};
421421

422422
const dates = {
423423
agp: {},

test/report_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ describe('report', () => {
266266
equal(Object.keys(allReportQueries).includes('settings'), true);
267267
});
268268
it('should include daily report when all report queries when asked for', () => {
269-
equal(Object.keys(allReportQueries).includes('settings'), true);
269+
equal(Object.keys(allReportQueries).includes('daily'), true);
270270
});
271271
it('should not include an `all` report type ', () => {
272272
equal(Object.keys(allReportQueries).includes('all'), false);

0 commit comments

Comments
 (0)