Skip to content

Commit

Permalink
Update test title
Browse files Browse the repository at this point in the history
  • Loading branch information
talldan authored Jan 15, 2020
1 parent 490838b commit 78cea2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rich-text/src/test/to-plain-text.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe( 'toPlainText', () => {
expect( () => toPlainText( html ) ).not.toThrow();
} );

it( 'expects strings and an empty string for falsey values', () => {
it( 'expects strings and returns an empty string for falsey values', () => {
expect( toPlainText( '' ) ).toBe( '' );
expect( toPlainText( undefined ) ).toBe( '' );
expect( toPlainText( null ) ).toBe( '' );
Expand Down

0 comments on commit 78cea2d

Please sign in to comment.