We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42d1500 commit bc9599eCopy full SHA for bc9599e
src/DeltaTests/MiddlewareTests.cs
@@ -110,10 +110,10 @@ public void CacheControlExtensions()
110
[Test]
111
public void ConnectionImplicitOperator()
112
{
113
- using var dbConnection = new Microsoft.Data.SqlClient.SqlConnection();
114
- Delta.Connection connection = dbConnection;
+ using var dbConnection = new SqlConnection();
+ Connection connection = dbConnection;
115
116
AreEqual(dbConnection, connection.SqlConnection);
117
IsNull(connection.DbTransaction);
118
}
119
-}
+}
0 commit comments