Skip to content

Commit

Permalink
Remove filler spaces from empty constructs. (#8169)
Browse files Browse the repository at this point in the history
  • Loading branch information
afercia authored and gziolo committed Aug 1, 2018
1 parent abb14b1 commit 2644033
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/navigable-container/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function fireKeyDown( container, keyCode, shiftKey ) {
},
preventDefault: () => {},
nativeEvent: {
stopImmediatePropagation: () => { },
stopImmediatePropagation: () => {},
},
keyCode,
shiftKey,
Expand Down
2 changes: 1 addition & 1 deletion packages/editor/src/components/block-list/breadcrumb.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class BlockBreadcrumb extends Component {
} );
}

render( ) {
render() {
const { clientId, rootClientId } = this.props;

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe( 'mediaUpload', () => {
const onFileChangeSpy = jest.fn();

it( 'should do nothing on no files', () => {
mediaUpload( { filesList: [ ], onFileChange: onFileChangeSpy, allowedType: 'image' } );
mediaUpload( { filesList: [], onFileChange: onFileChangeSpy, allowedType: 'image' } );
expect( onFileChangeSpy ).not.toHaveBeenCalled();
} );

Expand Down

0 comments on commit 2644033

Please sign in to comment.