File tree Expand file tree Collapse file tree
packages/blockly/tests/mocha Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments