Skip to content

Commit 963264f

Browse files
committed
Fix one more skip condition
1 parent f6b4a9f commit 963264f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/NHibernate.Test/Async/ProjectionFixtures/Fixture.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public async Task AggregatingHirearchyWithCountAsync()
148148
[Test]
149149
public async Task LimitingResultSetOnQueryThatIsOrderedByProjectionAsync()
150150
{
151-
if (!TestDialect.SupportsSubSelectsInOrderBy)
151+
if (!TestDialect.SupportsSubSelectsInOrderBy)
152152
Assert.Ignore("Dialect does not support order by sub-select");
153153

154154
using(var s = OpenSession())
@@ -172,8 +172,8 @@ public async Task LimitingResultSetOnQueryThatIsOrderedByProjectionAsync()
172172
[Test]
173173
public async Task QueryingWithParemetersAndParaemtersInOrderByAsync()
174174
{
175-
if (!Dialect.SupportsScalarSubSelects)
176-
Assert.Ignore("Dialect does not support scalar sub-select");
175+
if (!TestDialect.SupportsSubSelectsInOrderBy)
176+
Assert.Ignore("Dialect does not support order by sub-select");
177177

178178
using (var s = OpenSession())
179179
{

src/NHibernate.Test/ProjectionFixtures/Fixture.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public void AggregatingHirearchyWithCount()
137137
[Test]
138138
public void LimitingResultSetOnQueryThatIsOrderedByProjection()
139139
{
140-
if (!TestDialect.SupportsSubSelectsInOrderBy)
140+
if (!TestDialect.SupportsSubSelectsInOrderBy)
141141
Assert.Ignore("Dialect does not support order by sub-select");
142142

143143
using(var s = OpenSession())
@@ -161,8 +161,8 @@ public void LimitingResultSetOnQueryThatIsOrderedByProjection()
161161
[Test]
162162
public void QueryingWithParemetersAndParaemtersInOrderBy()
163163
{
164-
if (!Dialect.SupportsScalarSubSelects)
165-
Assert.Ignore("Dialect does not support scalar sub-select");
164+
if (!TestDialect.SupportsSubSelectsInOrderBy)
165+
Assert.Ignore("Dialect does not support order by sub-select");
166166

167167
using (var s = OpenSession())
168168
{

0 commit comments

Comments
 (0)