Skip to content

Commit f596707

Browse files
committed
Enable GH-2551 fixed tests
1 parent 0771f9c commit f596707

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

src/NHibernate.Test/Linq/QueryCacheableTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -443,9 +443,6 @@ public void ProjectedEntitiesAreCachable()
443443
[Test]
444444
public void CacheHqlQueryWithFetchAndTransformerThatChangeTuple()
445445
{
446-
if (!TestDialect.SupportsDuplicatedColumnAliases)
447-
Assert.Ignore("Ignored due to GH-2092");
448-
449446
Sfi.Statistics.Clear();
450447
Sfi.EvictQueries();
451448

src/NHibernate.Test/NHSpecificTest/NH1773/Fixture.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using NUnit.Framework;
22
using System.Collections.Generic;
3-
using NHibernate.Dialect;
43

54
namespace NHibernate.Test.NHSpecificTest.NH1773
65
{
6+
//Also tests GH-2551 (Fails with MS SQL Ce & SQL Anywhere due to the query generating a duplicated column alias name, which these databases do not support.)
77
[TestFixture]
88
public class Fixture : BugTestCase
99
{
@@ -21,12 +21,6 @@ public void CustomHQLFunctionsShouldBeRecognizedByTheParser()
2121
}
2222
}
2323

24-
protected override bool AppliesTo(Dialect.Dialect dialect)
25-
{
26-
// Fails with MS SQL Ce & SQL Anywhere due to the query generating a duplicated column alias name, which these databases do not support.
27-
return TestDialect.SupportsDuplicatedColumnAliases;
28-
}
29-
3024
protected override void OnSetUp()
3125
{
3226
using (var s = OpenSession())

0 commit comments

Comments
 (0)