File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public void InitConnectionStringBuilder_WhenExpectedKeys_ReturnUpdatedConnection
4242 new YdbConnectionStringBuilder ( "Host=server;Port=2135;Database=/my/path;User=Kirill;UseTls=true;" +
4343 "KeepAlivePingDelay=30;KeepAlivePingTimeout=60;" +
4444 "EnableMultipleHttp2Connections=true;" +
45- "MaxSendMessageSize=1000000;MaxReceiveMessageSize=1000000" +
45+ "MaxSendMessageSize=1000000;MaxReceiveMessageSize=1000000; " +
4646 "DisableDiscovery=true" ) ;
4747
4848 Assert . Equal ( 2135 , connectionString . Port ) ;
@@ -59,7 +59,8 @@ public void InitConnectionStringBuilder_WhenExpectedKeys_ReturnUpdatedConnection
5959 Assert . Equal ( "Host=server;Port=2135;Database=/my/path;User=Kirill;UseTls=True;" +
6060 "KeepAlivePingDelay=30;KeepAlivePingTimeout=60;" +
6161 "EnableMultipleHttp2Connections=True;" +
62- "MaxSendMessageSize=1000000;MaxReceiveMessageSize=1000000" , connectionString . ConnectionString ) ;
62+ "MaxSendMessageSize=1000000;MaxReceiveMessageSize=1000000;" +
63+ "DisableDiscovery=true" , connectionString . ConnectionString ) ;
6364 Assert . True ( connectionString . DisableDiscovery ) ;
6465 }
6566
You can’t perform that action at this time.
0 commit comments