@@ -285,7 +285,7 @@ public async Task StructurePrinter_Should_Print_Tree(string text, string expecte
285
285
{
286
286
var writer = new StringWriter ( ) ;
287
287
var document = text . Parse ( ) ;
288
- await _structPrinter1 . PrintAsync ( document , writer ) . ConfigureAwait ( false ) ;
288
+ await _structPrinter1 . PrintAsync ( document , writer ) ;
289
289
var actual = writer . ToString ( ) ;
290
290
actual . ShouldBe ( expected ) ;
291
291
}
@@ -304,7 +304,7 @@ public async Task StructurePrinter_Should_Print_Tree_Without_Names(string text,
304
304
{
305
305
var writer = new StringWriter ( ) ;
306
306
var document = text . Parse ( ) ;
307
- await _structPrinter2 . PrintAsync ( document , writer ) . ConfigureAwait ( false ) ;
307
+ await _structPrinter2 . PrintAsync ( document , writer ) ;
308
308
var actual = writer . ToString ( ) ;
309
309
actual . ShouldBe ( expected ) ;
310
310
}
@@ -550,7 +550,7 @@ public async Task StructurePrinter_Should_Print_Tree_With_Locations(string text,
550
550
var writer = new StringWriter ( ) ;
551
551
552
552
var document = text . Parse ( new ParserOptions { Ignore = option } ) ;
553
- await _structPrinter3 . PrintAsync ( document , writer ) . ConfigureAwait ( false ) ;
553
+ await _structPrinter3 . PrintAsync ( document , writer ) ;
554
554
var actual = writer . ToString ( ) ;
555
555
actual . ShouldBe ( expected ) ;
556
556
}
@@ -587,7 +587,7 @@ public async Task StructurePrinter_Should_Print_Tree_With_Custom_Indentation(str
587
587
588
588
var document = text . Parse ( new ParserOptions { Ignore = option } ) ;
589
589
var printer = new StructurePrinter ( new StructurePrinterOptions { PrintNames = false , IndentSize = indentSize } ) ;
590
- await printer . PrintAsync ( document , writer ) . ConfigureAwait ( false ) ;
590
+ await printer . PrintAsync ( document , writer ) ;
591
591
var actual = writer . ToString ( ) ;
592
592
actual . ShouldBe ( expected ) ;
593
593
}
0 commit comments