Skip to content

Commit ddac45a

Browse files
committed
Changed the complex test to use the test service query source rather than an in-memory query source.
1 parent 957ecbf commit ddac45a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Testing/Qactive.Tests/Queries/ComplexTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public async Task ComplexTest1()
2626
new[] { typeof(RootObject), typeof(Node), typeof(Leaf), typeof(EnumerableEx) },
2727
Observable.Return(new ServiceContext(new[] { new RootObject("A", 1), new RootObject("B", 10), new RootObject("C", 100), new RootObject("D", 1000) })));
2828

29-
var results = await service.InMemoryQueryAsync(source =>
29+
var results = await service.QueryAsync(source =>
3030
from leafPackResult in
3131
from leaf in
3232
(from context in source

0 commit comments

Comments
 (0)