@@ -473,18 +473,18 @@ public async Task BulkUpsertImporter_ThrowsOnNonexistentTable()
473473
474474 await Assert . ThrowsAsync < YdbException > ( async ( ) => { await importer . FlushAsync ( ) ; } ) ;
475475 }
476-
476+
477477 [ Fact ]
478478 public void EnableImplicitSession_WhenSetViaPrimaryKey_ParsesAndAppearsInConnectionString ( )
479479 {
480480 var csb = new YdbConnectionStringBuilder ( "EnableImplicitSession=true;Host=server;Port=2135;" ) ;
481481 Assert . True ( csb . EnableImplicitSession ) ;
482482
483483 Assert . Contains ( "EnableImplicitSession=True" , csb . ConnectionString ) ;
484- Assert . Contains ( "Host=server" , csb . ConnectionString ) ;
484+ Assert . Contains ( "Host=server" , csb . ConnectionString ) ;
485485 Assert . Contains ( "Port=2135" , csb . ConnectionString ) ;
486486 }
487-
487+
488488 [ Fact ]
489489 public void EnableImplicitSession_WhenSetViaAlias_ParsesAndNormalizesKey ( )
490490 {
@@ -503,14 +503,14 @@ public void EnableImplicitSession_WhenSetViaAlias_ParsesAndNormalizesKey()
503503 }
504504
505505 [ Theory ]
506- [ InlineData ( "true" , true ) ]
507- [ InlineData ( "True" , true ) ]
508- [ InlineData ( "on" , true ) ]
509- [ InlineData ( "1" , true ) ]
506+ [ InlineData ( "true" , true ) ]
507+ [ InlineData ( "True" , true ) ]
508+ [ InlineData ( "on" , true ) ]
509+ [ InlineData ( "1" , true ) ]
510510 [ InlineData ( "false" , false ) ]
511511 [ InlineData ( "False" , false ) ]
512- [ InlineData ( "off" , false ) ]
513- [ InlineData ( "0" , false ) ]
512+ [ InlineData ( "off" , false ) ]
513+ [ InlineData ( "0" , false ) ]
514514 public void EnableImplicitSession_StringBooleanVariants_AreParsed ( string value , bool expected )
515515 {
516516 var csb = new YdbConnectionStringBuilder ( $ "EnableImplicitSession={ value } ;") ;
0 commit comments