Skip to content

Commit bceaf6f

Browse files
committed
fix linting
1 parent 8204bdf commit bceaf6f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

tests/functional/raw-node/test/trailingChecksums.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ const bucket = 'testunsupportedchecksumsbucket';
77
const objectKey = 'key';
88
const objData = Buffer.alloc(1024, 'a');
99
// note this is not the correct checksum in objDataWithTrailingChecksum
10-
const objDataWithTrailingChecksum = '10\r\n0123456789abcdef\r\n10\r\n0123456789abcdef\r\n0\r\nx-amz-checksum-crc64nvme:YeIDuLa7tU0=\r\n';
10+
const objDataWithTrailingChecksum = '10\r\n0123456789abcdef\r\n' +
11+
'10\r\n0123456789abcdef\r\n' +
12+
'0\r\nx-amz-checksum-crc64nvme:YeIDuLa7tU0=\r\n';
1113
const objDataWithoutTrailingChecksum = '0123456789abcdef0123456789abcdef';
1214

1315
const authCredentials = {

tests/unit/auth/TrailingChecksumTransform.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ChunkedReader extends Readable {
3333
}
3434

3535
describe('TrailingChecksumTransform class', () => {
36-
it(`should correctly remove checksums`, done => {
36+
it('should correctly remove checksums', done => {
3737
const trailingChecksumTransform = new TrailingChecksumTransform(log, err => {
3838
assert.strictEqual(err, null);
3939
});

0 commit comments

Comments
 (0)