Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ellatrix committed Aug 22, 2019
1 parent c444e32 commit f425382
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ exports[`List should not transform lines in block when transforming multiple blo
<!-- /wp:list -->"
`;
exports[`List should not undo asterisk transform with backspace after selection change 1`] = `""`;
exports[`List should not undo asterisk transform with backspace after typing 1`] = `""`;
exports[`List should outdent with children 1`] = `
Expand Down Expand Up @@ -276,8 +278,6 @@ exports[`List should undo asterisk transform with backspace 1`] = `
<!-- /wp:paragraph -->"
`;
exports[`List should undo asterisk transform with backspace after selection change 1`] = `""`;
exports[`List should undo asterisk transform with escape 1`] = `
"<!-- wp:paragraph -->
<p>* </p>
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e-tests/specs/blocks/list.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe( 'List', () => {
expect( await getEditedPostContent() ).toMatchSnapshot();
} );

it( 'should undo asterisk transform with backspace after selection change', async () => {
it( 'should not undo asterisk transform with backspace after selection change', async () => {
await clickBlockAppender();
await page.keyboard.press( 'Enter' );
await page.keyboard.type( '* ' );
Expand Down

0 comments on commit f425382

Please sign in to comment.