Skip to content

Commit

Permalink
revert quotes changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed Feb 20, 2023
1 parent da6b908 commit 455eac9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/block-directory/src/store/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const installBlockType =
registry.dispatch( noticesStore ).createInfoNotice(
sprintf(
// translators: %s is the block title.
__( 'Block "%s" installed and added.' ),
__( 'Block %s installed and added.' ),
block.title
),
{
Expand Down
4 changes: 2 additions & 2 deletions packages/block-directory/src/store/test/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe( 'actions', () => {
// Check that notice was displayed.
const notices = registry.select( noticesStore ).getNotices();
expect( notices ).toMatchObject( [
{ content: 'Block "Test Block" installed and added.' },
{ content: 'Block Test Block installed and added.' },
] );
} );

Expand Down Expand Up @@ -156,7 +156,7 @@ describe( 'actions', () => {
// Check that notice was displayed.
const notices = registry.select( noticesStore ).getNotices();
expect( notices ).toMatchObject( [
{ content: 'Block "Test Block" installed and added.' },
{ content: 'Block Test Block installed and added.' },
] );
} );

Expand Down

0 comments on commit 455eac9

Please sign in to comment.