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 983ffb6 commit 5944177Copy full SHA for 5944177
Orm/Xtensive.Orm.Tests.Sql/IndexTest.cs
@@ -45,14 +45,15 @@ protected override void TestFixtureSetUp()
45
Connection.Close();
46
Connection.Dispose();
47
throw;
48
-
49
}
50
51
52
protected override void TestFixtureTearDown()
53
{
54
- if (Connection.State != System.Data.ConnectionState.Open)
55
- base.TestFixtureSetUp();
+ if (Connection.State != System.Data.ConnectionState.Open) {
+ base.TestFixtureTearDown();
+ return;
56
+ }
57
if (schema != null) {
58
Table t = schema.Tables[TableName];
59
if (t != null) {
0 commit comments