@@ -285,7 +285,7 @@ public async Task StructurePrinter_Should_Print_Tree(string text, string expecte
285285 {
286286 var writer = new StringWriter ( ) ;
287287 var document = text . Parse ( ) ;
288- await _structPrinter1 . PrintAsync ( document , writer ) . ConfigureAwait ( false ) ;
288+ await _structPrinter1 . PrintAsync ( document , writer ) ;
289289 var actual = writer . ToString ( ) ;
290290 actual . ShouldBe ( expected ) ;
291291 }
@@ -304,7 +304,7 @@ public async Task StructurePrinter_Should_Print_Tree_Without_Names(string text,
304304 {
305305 var writer = new StringWriter ( ) ;
306306 var document = text . Parse ( ) ;
307- await _structPrinter2 . PrintAsync ( document , writer ) . ConfigureAwait ( false ) ;
307+ await _structPrinter2 . PrintAsync ( document , writer ) ;
308308 var actual = writer . ToString ( ) ;
309309 actual . ShouldBe ( expected ) ;
310310 }
@@ -550,7 +550,7 @@ public async Task StructurePrinter_Should_Print_Tree_With_Locations(string text,
550550 var writer = new StringWriter ( ) ;
551551
552552 var document = text . Parse ( new ParserOptions { Ignore = option } ) ;
553- await _structPrinter3 . PrintAsync ( document , writer ) . ConfigureAwait ( false ) ;
553+ await _structPrinter3 . PrintAsync ( document , writer ) ;
554554 var actual = writer . ToString ( ) ;
555555 actual . ShouldBe ( expected ) ;
556556 }
@@ -587,7 +587,7 @@ public async Task StructurePrinter_Should_Print_Tree_With_Custom_Indentation(str
587587
588588 var document = text . Parse ( new ParserOptions { Ignore = option } ) ;
589589 var printer = new StructurePrinter ( new StructurePrinterOptions { PrintNames = false , IndentSize = indentSize } ) ;
590- await printer . PrintAsync ( document , writer ) . ConfigureAwait ( false ) ;
590+ await printer . PrintAsync ( document , writer ) ;
591591 var actual = writer . ToString ( ) ;
592592 actual . ShouldBe ( expected ) ;
593593 }
0 commit comments