Skip to content

Commit d3b325c

Browse files
committed
test should not include special condition
1 parent 5d70456 commit d3b325c

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

search_test.go

+1-8
Original file line numberDiff line numberDiff line change
@@ -663,14 +663,7 @@ var _ = Describe("RediSearch commands Resp 2", Label("search"), func() {
663663
Expect(res.Rows[0].Fields["t2"]).To(BeEquivalentTo("world"))
664664

665665
_, err = client.FTAggregateWithArgs(ctx, "idx_not_exist", "*", &redis.FTAggregateOptions{}).Result()
666-
if !RECluster {
667-
Expect(err).To(HaveOccurred())
668-
} else {
669-
//FIXME:This is a known issue, which is fixed in RedisSearch(2.8.10), but the Redis Enterprise(7.4.2) packaged RediSearch 2.8.9
670-
//https://github.com/RediSearch/RediSearch/issues/4272
671-
//https://redis.io/docs/latest/operate/rs/release-notes/rs-7-4-2-releases/rs-7-4-2-54/
672-
Expect(err).NotTo(HaveOccurred())
673-
}
666+
Expect(err).To(HaveOccurred())
674667
})
675668

676669
It("should FTAggregate with scorer and addscores", Label("search", "ftaggregate", "NonRedisEnterprise"), func() {

0 commit comments

Comments
 (0)