Skip to content

Commit 4b7e29b

Browse files
committed
Fix test case for some dialects
1 parent 65f5a61 commit 4b7e29b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/NHibernate.Test/NHSpecificTest/GH3215/FixtureByCode.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using NHibernate.Cfg.MappingSchema;
1+
using NHibernate.Cfg;
2+
using NHibernate.Cfg.MappingSchema;
23
using NHibernate.Mapping.ByCode;
34
using NUnit.Framework;
45

@@ -25,6 +26,12 @@ protected override HbmMapping GetMappings()
2526
});
2627
return mapper.CompileMappingForAllExplicitlyAddedEntities();
2728
}
29+
30+
protected override void Configure(Configuration configuration)
31+
{
32+
base.Configure(configuration);
33+
configuration.SetProperty(Environment.Hbm2ddlKeyWords, "auto-quote");
34+
}
2835

2936
[Test]
3037
public void CountDistinctWithReservedWords()

0 commit comments

Comments
 (0)