You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ti...@apache.org on 2022/08/15 05:52:50 UTC

[ignite] branch master updated: IGNITE-17511 Fix NPE for pageSize test (#10198)

This is an automated email from the ASF dual-hosted git repository.

timoninmaxim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 93adc6fc1ae IGNITE-17511 Fix NPE for pageSize test (#10198)
93adc6fc1ae is described below

commit 93adc6fc1ae0d8fb1628679c92330707baab7c90
Author: Maksim Timonin <ti...@gmail.com>
AuthorDate: Mon Aug 15 08:52:44 2022 +0300

    IGNITE-17511 Fix NPE for pageSize test (#10198)
---
 .../java/org/apache/ignite/cache/query/ThinClientIndexQueryTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/indexing/src/test/java/org/apache/ignite/cache/query/ThinClientIndexQueryTest.java b/modules/indexing/src/test/java/org/apache/ignite/cache/query/ThinClientIndexQueryTest.java
index ee0f3e87f2f..50a43fe3b6b 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/cache/query/ThinClientIndexQueryTest.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/cache/query/ThinClientIndexQueryTest.java
@@ -169,7 +169,7 @@ public class ThinClientIndexQueryTest extends GridCommonAbstractTest {
 
                 TestRecordingCommunicationSpi.spi(grid(0)).record(GridQueryNextPageRequest.class);
 
-                assertClientQuery(cache, 0, CNT, null);
+                assertClientQuery(cache, 0, CNT, idxQry);
 
                 List<Object> reqs = TestRecordingCommunicationSpi.spi(grid(0)).recordedMessages(true);