Skip to content

Commit 3263519

Browse files
committed
Get rid of obsolete extension used
1 parent ef5526c commit 3263519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm.Tests/Storage/CommandProcessing/BatchingCommandProcessorParametersManagement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public async Task InlineQueryInSeparateBatchAsyncTest()
246246

247247
using (counter.Attach()) {
248248
var inlineQuery = await session.Query.All<ALotOfFieldsEntityValid>()
249-
.Where(e => e.Id.In(IncludeAlgorithm.ComplexCondition, new[] { 1, 2, 3, 4 })).AsAsync();
249+
.Where(e => e.Id.In(IncludeAlgorithm.ComplexCondition, new[] { 1, 2, 3, 4 })).ExecuteAsync();
250250
Assert.That(inlineQuery.Any(), Is.True);
251251
Assert.That(counter.Count, Is.EqualTo(6));
252252
}

0 commit comments

Comments
 (0)