Skip to content

Commit 814432b

Browse files
committed
fix: lint
1 parent d9f9e37 commit 814432b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/VirtualTarGenerator.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,8 @@ describe('generator', () => {
186186

187187
// The sums of all values in both the input and output buffers must be the
188188
// same.
189-
const fileSum = fileData.reduce((sum, value) => sum += value);
190-
const dataSum = extractedData.reduce((sum, value) => sum += value);
189+
const fileSum = fileData.reduce((sum, value) => (sum += value));
190+
const dataSum = extractedData.reduce((sum, value) => (sum += value));
191191
expect(dataSum).toEqual(fileSum);
192192
});
193193
});

0 commit comments

Comments
 (0)