File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/material-ui-lab/src/Autocomplete Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -208,18 +208,18 @@ describe('<Autocomplete />', () => {
208208 it ( 'does not open on clear' , ( ) => {
209209 const handleOpen = spy ( ) ;
210210 const handleChange = spy ( ) ;
211- const { container } = render (
211+ const { container } = render (
212212 < Autocomplete
213213 onOpen = { handleOpen }
214214 onChange = { handleChange }
215215 open = { false }
216216 options = { [ 'one' , 'two' ] }
217217 value = "one"
218- renderInput = { params => < TextField { ...params } /> }
218+ renderInput = { params => < TextField { ...params } /> }
219219 /> ,
220- )
220+ ) ;
221221
222- const clear = container . querySelector ( 'button' )
222+ const clear = container . querySelector ( 'button' ) ;
223223 fireEvent . click ( clear ) ;
224224
225225 expect ( handleOpen . callCount ) . to . equal ( 0 ) ;
You can’t perform that action at this time.
0 commit comments