File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Microsoft.Data.SqlClient/tests/UnitTests/SimulatedServerTests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 44
55using System ;
66using System . Data ;
7- using Microsoft . Data . SqlClient ;
7+ using Microsoft . Data . SqlClient . Connection ;
88using Microsoft . Data . SqlClient . Tests . Common ;
99using Microsoft . SqlServer . TDS . Servers ;
1010using Xunit ;
@@ -563,7 +563,7 @@ public void TransientFault_IgnoreServerProvidedFailoverPartner_ShouldConnectToUs
563563
564564 // Connect once to the primary to trigger it to send the failover partner
565565 connection . Open ( ) ;
566- Assert . Equal ( "invalidhost" , ( connection . InnerConnection as SqlInternalConnectionTds ) ! . ServerProvidedFailoverPartner ) ;
566+ Assert . Equal ( "invalidhost" , ( connection . InnerConnection as SqlConnectionInternal ) ! . ServerProvidedFailoverPartner ) ;
567567
568568 // Close the connection to return it to the pool
569569 connection . Close ( ) ;
You can’t perform that action at this time.
0 commit comments