@@ -477,18 +477,18 @@ public async Task BulkUpsertImporter_ThrowsOnNonexistentTable()
477477
478478 await Assert . ThrowsAsync < YdbException > ( async ( ) => { await importer . FlushAsync ( ) ; } ) ;
479479 }
480-
480+
481481 [ Fact ]
482482 public void EnableImplicitSession_WhenSetViaPrimaryKey_ParsesAndAppearsInConnectionString ( )
483483 {
484484 var csb = new YdbConnectionStringBuilder ( "EnableImplicitSession=true;Host=server;Port=2135;" ) ;
485485 Assert . True ( csb . EnableImplicitSession ) ;
486486
487487 Assert . Contains ( "EnableImplicitSession=True" , csb . ConnectionString ) ;
488- Assert . Contains ( "Host=server" , csb . ConnectionString ) ;
488+ Assert . Contains ( "Host=server" , csb . ConnectionString ) ;
489489 Assert . Contains ( "Port=2135" , csb . ConnectionString ) ;
490490 }
491-
491+
492492 [ Fact ]
493493 public void EnableImplicitSession_WhenSetViaAlias_ParsesAndNormalizesKey ( )
494494 {
@@ -507,14 +507,14 @@ public void EnableImplicitSession_WhenSetViaAlias_ParsesAndNormalizesKey()
507507 }
508508
509509 [ Theory ]
510- [ InlineData ( "true" , true ) ]
511- [ InlineData ( "True" , true ) ]
512- [ InlineData ( "on" , true ) ]
513- [ InlineData ( "1" , true ) ]
510+ [ InlineData ( "true" , true ) ]
511+ [ InlineData ( "True" , true ) ]
512+ [ InlineData ( "on" , true ) ]
513+ [ InlineData ( "1" , true ) ]
514514 [ InlineData ( "false" , false ) ]
515515 [ InlineData ( "False" , false ) ]
516- [ InlineData ( "off" , false ) ]
517- [ InlineData ( "0" , false ) ]
516+ [ InlineData ( "off" , false ) ]
517+ [ InlineData ( "0" , false ) ]
518518 public void EnableImplicitSession_StringBooleanVariants_AreParsed ( string value , bool expected )
519519 {
520520 var csb = new YdbConnectionStringBuilder ( $ "EnableImplicitSession={ value } ;") ;
0 commit comments