Skip to content

Commit

Permalink
isAndroid is not a variable, it is a property so that was corrected.
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-alexander committed Feb 5, 2021
1 parent 56f6c82 commit a1ed719
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe( 'Gutenberg Editor Audio Block tests', () => {

block.click();

if ( isAndroid ) {
if ( isAndroid() ) {
await editorPage.driver.sleep( 5000 );
} else {
await editorPage.driver.sleep( 1000 );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe( 'Gutenberg Editor File Block tests', () => {

block.click();

if ( isAndroid ) {
if ( isAndroid() ) {
await editorPage.driver.sleep( 5000 );
} else {
await editorPage.driver.sleep( 1000 );
Expand Down

0 comments on commit a1ed719

Please sign in to comment.