Skip to content

Commit 3cdcef5

Browse files
committed
fix extra spaces and missing EOF lines
Issue: BB-585
1 parent 9fe370a commit 3cdcef5

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ export default [...compat.extends("scality"), {
6464
}
6565
}
6666
},
67-
}];
67+
}];

lib/BackbeatConsumer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,8 +808,8 @@ class BackbeatConsumer extends EventEmitter {
808808
const self = this;
809809
let lastBootstrapId;
810810
let producer; // eslint-disable-line prefer-const
811-
let producerTimer;
812-
let consumerTimer;
811+
let producerTimer;
812+
let consumerTimer;
813813
function consumeCb(err, messages) {
814814
if (err) {
815815
return undefined;

tests/unit/RoleCredentials.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ describe('Credentials Manager', () => {
219219
});
220220
});
221221

222-
223222
it('RoleCredentials should use a default renewal anticipation delay if not explicit', () => {
224223
const vaultclient = new Client(
225224
vaultHost, vaultPort, undefined,

tests/utils/DummyLogger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class DummyRequestLogger {
4242
this.counts.fatal += 1;
4343
}
4444

45-
getSerializedUids() {
45+
getSerializedUids() {
4646
return 'dummy:Serialized:Uids';
4747
}
4848

0 commit comments

Comments
 (0)