From 3bd3cffaf98f6b427675dcb6678e27fa5dbc408e Mon Sep 17 00:00:00 2001 From: SHAIK SHER ALI Date: Thu, 7 Dec 2023 09:45:06 -0800 Subject: [PATCH] fix review comment --- .../scala/filodb.core/memstore/PartKeyLuceneIndexSpec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/scala/filodb.core/memstore/PartKeyLuceneIndexSpec.scala b/core/src/test/scala/filodb.core/memstore/PartKeyLuceneIndexSpec.scala index 44e94e7987..5438099722 100644 --- a/core/src/test/scala/filodb.core/memstore/PartKeyLuceneIndexSpec.scala +++ b/core/src/test/scala/filodb.core/memstore/PartKeyLuceneIndexSpec.scala @@ -73,7 +73,7 @@ class PartKeyLuceneIndexSpec extends AnyFunSpec with Matchers with BeforeAndAfte val partNums2 = keyIndex.partIdsFromFilters(Seq(filter2), start, end) partNums2 shouldEqual debox.Buffer(7, 8, 9) - // return only 4 partIds - empty filter + // return only 2 partIds - with filter val partNumsLimitFilter = keyIndex.partIdsFromFilters(Seq(filter2), start, end, 2) partNumsLimitFilter shouldEqual debox.Buffer(7, 8)