We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61d0b75 commit f246053Copy full SHA for f246053
2 files changed
Orm/Xtensive.Orm.Tests.Sql/IndexTest.cs
@@ -50,7 +50,9 @@ protected override void TestFixtureSetUp()
50
51
protected override void TestFixtureTearDown()
52
{
53
- if (Connection.UnderlyingConnection!=null && Connection.State != System.Data.ConnectionState.Open) {
+ if (Connection is null)
54
+ return;
55
+ if (Connection.State != System.Data.ConnectionState.Open) {
56
base.TestFixtureTearDown();
57
return;
58
}
Orm/Xtensive.Orm.Tests.Sql/SqlServer/ExtractorTest.cs
@@ -23,6 +23,9 @@ public class ExtractorTest : SqlTest
23
24
25
26
27
28
+
29
foreach (var dropOperation in dropOperations) {
30
try {
31
_ = ExecuteNonQuery(dropOperation);
0 commit comments