Skip to content

Commit

Permalink
toEqual -> toBe
Browse files Browse the repository at this point in the history
Co-authored-by: Greg Ziółkowski <grzegorz@gziolo.pl>
  • Loading branch information
ockham and gziolo authored Sep 11, 2024
1 parent 2a35658 commit 9b5f0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/block-editor/src/hooks/test/supports.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe( 'hasBlockClassNameSupport', () => {
const block = {
name: blockName,
};
expect( hasBlockClassNameSupport( block ) ).toEqual( true );
expect( hasBlockClassNameSupport( block ) ).toBe( true );
} );

it( 'should return false if the block does not support className', () => {
Expand Down

0 comments on commit 9b5f0b6

Please sign in to comment.