File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ class TapStream extends Readable {
71
71
return `TODO${ reason ? ` ${ tapEscape ( reason ) } ` : '' } ` ;
72
72
}
73
73
74
- subTest ( indent , name ) {
74
+ subtest ( indent , name ) {
75
75
this . #tryPush( `${ indent } # Subtest: ${ tapEscape ( name ) } \n` ) ;
76
76
}
77
77
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ class Test extends AsyncResource {
186
186
}
187
187
188
188
if ( this . shouldReportSubtest ) {
189
- this . reporter . subTest ( this . indent , this . name ) ;
189
+ this . reporter . subtest ( this . indent , this . name ) ;
190
190
this . shouldReportSubtest = false ;
191
191
}
192
192
@@ -424,7 +424,7 @@ class Test extends AsyncResource {
424
424
if ( this . subtests . length > 0 ) {
425
425
this . reporter . plan ( this . subtests [ 0 ] . indent , this . subtests . length ) ;
426
426
} else {
427
- this . reporter . subTest ( this . indent , this . name ) ;
427
+ this . reporter . subtest ( this . indent , this . name ) ;
428
428
}
429
429
430
430
this . report ( ) ;
You can’t perform that action at this time.
0 commit comments