@@ -78,7 +78,7 @@ describe('<pf-select>', function() {
7878 describe ( 'with accessible-label attribute and 3 items' , function ( ) {
7979 let element : PfSelect ;
8080 const updateComplete = ( ) => element . updateComplete ;
81- const focus = ( ) => element . focus ;
81+ const focus = ( ) => element . focus ( ) ;
8282
8383 beforeEach ( async function ( ) {
8484 element = await createFixture < PfSelect > ( html `
@@ -150,7 +150,7 @@ describe('<pf-select>', function() {
150150 describe ( 'with `placeholder` attribute and 3 items' , function ( ) {
151151 let element : PfSelect ;
152152 const updateComplete = ( ) => element . updateComplete ;
153- const focus = ( ) => element . focus ;
153+ const focus = ( ) => element . focus ( ) ;
154154
155155 beforeEach ( async function ( ) {
156156 element = await createFixture < PfSelect > ( html `
@@ -244,7 +244,7 @@ describe('<pf-select>', function() {
244244 describe ( 'with 3 items and associated <label> elements' , function ( ) {
245245 let element : PfSelect ;
246246 const updateComplete = ( ) => element . updateComplete ;
247- const focus = ( ) => element . focus ;
247+ const focus = ( ) => element . focus ( ) ;
248248
249249 beforeEach ( async function ( ) {
250250 element = await createFixture < PfSelect > ( html `
0 commit comments