Skip to content

Commit bc9599e

Browse files
committed
Update MiddlewareTests.cs
1 parent 42d1500 commit bc9599e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/DeltaTests/MiddlewareTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ public void CacheControlExtensions()
110110
[Test]
111111
public void ConnectionImplicitOperator()
112112
{
113-
using var dbConnection = new Microsoft.Data.SqlClient.SqlConnection();
114-
Delta.Connection connection = dbConnection;
113+
using var dbConnection = new SqlConnection();
114+
Connection connection = dbConnection;
115115

116116
AreEqual(dbConnection, connection.SqlConnection);
117117
IsNull(connection.DbTransaction);
118118
}
119-
}
119+
}

0 commit comments

Comments
 (0)