Skip to content

Commit

Permalink
apply fixes for allow-parens as needed lint rule, phetsims/chipper#790
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 22, 2019
1 parent 1094fce commit bd7ae29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/accessibility/UtteranceTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ define( require => {
}
};

const testOrder = ( messageSuffix ) => {
const testOrder = messageSuffix => {

// newest at lowest index because of unshift
assert.ok( alerts[ 3 ] === '1', 'Array order1' + messageSuffix );
Expand Down Expand Up @@ -132,7 +132,7 @@ define( require => {
}
};

const testOrder = ( messageSuffix ) => {
const testOrder = messageSuffix => {

// newest at lowest index
assert.ok( alerts[ 6 ] === '1', 'Array order1' + messageSuffix );
Expand Down

0 comments on commit bd7ae29

Please sign in to comment.