Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz_marzencki committed Mar 25, 2021
1 parent c3adf54 commit abf9b3e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -506,10 +506,10 @@ describe( 'Navigation editor', () => {
const menuNameButton = await page.waitForXPath(
'//button[contains(@aria-label, "Edit menu name" ) ]'
);
const menuNamerButtonText = await menuNameButton.evaluate(
const menuNameButtonText = await menuNameButton.evaluate(
( element ) => element.innerText
);
expect( menuNamerButtonText ).toBe( oldName );
expect( menuNameButtonText ).toBe( oldName );
} );
} );
} );

0 comments on commit abf9b3e

Please sign in to comment.