diff --git a/packages/editor/src/store/test/actions.js b/packages/editor/src/store/test/actions.js index 616dd5431426e..9cfecbb88d9e0 100644 --- a/packages/editor/src/store/test/actions.js +++ b/packages/editor/src/store/test/actions.js @@ -196,7 +196,7 @@ describe( 'Post generator actions', () => { 'createSuccessNotice', currentPostStatus === 'publish' ? 'Updated Post' - : 'Saved', + : 'Draft saved', { actions: [], id: 'SAVE_POST_NOTICE_ID', diff --git a/packages/editor/src/store/utils/notice-builder.js b/packages/editor/src/store/utils/notice-builder.js index 60801ecebc849..06ea3e5e4c58c 100644 --- a/packages/editor/src/store/utils/notice-builder.js +++ b/packages/editor/src/store/utils/notice-builder.js @@ -38,7 +38,7 @@ export function getNotificationArgumentsForSaveSuccess( data ) { // Always should a notice, which will be spoken for accessibility. if ( ! isPublished && ! willPublish ) { // If saving a non-published post, don't show notice. - noticeMessage = __( 'Saved' ); + noticeMessage = __( 'Draft saved' ); shouldShowLink = false; } else if ( isPublished && ! willPublish ) { // If undoing publish status, show specific notice diff --git a/packages/editor/src/store/utils/test/notice-builder.js b/packages/editor/src/store/utils/test/notice-builder.js index c7a755ec9d056..f6e23f6a7d12d 100644 --- a/packages/editor/src/store/utils/test/notice-builder.js +++ b/packages/editor/src/store/utils/test/notice-builder.js @@ -34,7 +34,7 @@ describe( 'getNotificationArgumentsForSaveSuccess()', () => { [ 'when previous post is not published and post will not be published', [ 'draft', 'draft', false ], - [ 'Saved', defaultExpectedAction ], + [ 'Draft saved', defaultExpectedAction ], ], [ 'when previous post is published and post will be unpublished',