@@ -287,7 +287,7 @@ export function configureTestController(
287287 const doctests = describeEntry . tests . filter (
288288 ( testEntry : { type : string } ) => testEntry . type === "doctest" ,
289289 ) ;
290- const grouppedDoctests = new Map < string , vscode . TestItem > ( ) ;
290+ const groupedDoctests = new Map < string , vscode . TestItem > ( ) ;
291291 for ( const testEntry of doctests ) {
292292 const doctestModule = testEntry . tags
293293 . find ( ( t : string ) => t . startsWith ( "doctest:" ) )
@@ -297,7 +297,7 @@ export function configureTestController(
297297 . find ( ( t : string ) => t . startsWith ( "doctest_line:" ) )
298298 ?. replace ( "doctest_line:" , "" ) ,
299299 ) ;
300- let doctestGroupItem = grouppedDoctests . get ( doctestModule ) ;
300+ let doctestGroupItem = groupedDoctests . get ( doctestModule ) ;
301301 if ( ! doctestGroupItem ) {
302302 doctestGroupItem = controller . createTestItem (
303303 doctestModule ,
@@ -314,7 +314,7 @@ export function configureTestController(
314314 testData . set ( doctestGroupItem , ItemType . Doctest ) ;
315315
316316 describeCollection . add ( doctestGroupItem ) ;
317- grouppedDoctests . set ( doctestModule , doctestGroupItem ) ;
317+ groupedDoctests . set ( doctestModule , doctestGroupItem ) ;
318318 }
319319
320320 const testItem = controller . createTestItem (
0 commit comments