Skip to content

Commit bd7fd5c

Browse files
committed
chore: Fix lint
1 parent 7da0556 commit bd7fd5c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/blockly/tests/mocha/aria_test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ suite('ARIA', function () {
425425

426426
test('Blocks without inputs are properly labeled', function () {
427427
const block = this.makeBlock('math_random_float');
428-
let label = Blockly.utils.aria.getState(
428+
const label = Blockly.utils.aria.getState(
429429
block.getSvgRoot(),
430430
Blockly.utils.aria.State.LABEL,
431431
);
@@ -434,7 +434,7 @@ suite('ARIA', function () {
434434

435435
test('Blocks with one input are properly labeled', function () {
436436
const block = this.makeBlock('logic_negate');
437-
let label = Blockly.utils.aria.getState(
437+
const label = Blockly.utils.aria.getState(
438438
block.getSvgRoot(),
439439
Blockly.utils.aria.State.LABEL,
440440
);
@@ -443,7 +443,7 @@ suite('ARIA', function () {
443443

444444
test('Blocks with multiple inputs are properly labeled', function () {
445445
const block = this.makeBlock('logic_ternary');
446-
let label = Blockly.utils.aria.getState(
446+
const label = Blockly.utils.aria.getState(
447447
block.getSvgRoot(),
448448
Blockly.utils.aria.State.LABEL,
449449
);

0 commit comments

Comments
 (0)