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 0c0a05f commit 541ff23Copy full SHA for 541ff23
src/NHibernate.Test/NHSpecificTest/NH1981/Fixture.cs
@@ -5,6 +5,12 @@ namespace NHibernate.Test.NHSpecificTest.NH1981
5
[TestFixture]
6
public class Fixture : BugTestCase
7
{
8
+ protected override bool AppliesTo(Dialect.Dialect dialect)
9
+ {
10
+ // Firebird doesn't support this feature
11
+ return !(dialect is Dialect.FirebirdDialect);
12
+ }
13
+
14
protected override void OnSetUp()
15
16
using (var s = OpenSession())
@@ -24,7 +30,7 @@ protected override void OnTearDown()
24
30
using (var tx = s.BeginTransaction())
25
31
26
32
s.Delete("from Article");
27
-
33
28
34
tx.Commit();
29
35
}
36
0 commit comments