Fix error on index name for Percentile query

This commit is contained in:
nagamocha3000 2021-02-26 19:51:58 +03:00 committed by Matt Jaffee
parent 2de543bc55
commit 1947325e00
No known key found for this signature in database
GPG key ID: 08A3DFFF987B11BF

View file

@ -7008,8 +7008,8 @@ func variousQueriesOnPercentiles(t *testing.T, clusterSize int) {
for i, tst := range tests {
t.Run(fmt.Sprintf("%d-%s", i, tst.query), func(t *testing.T) {
resp := c.Query(t, "users", tst.query)
tr := c.QueryGRPC(t, "users", tst.query)
resp := c.Query(t, "users2", tst.query)
tr := c.QueryGRPC(t, "users2", tst.query)
if tst.qrVerifier != nil {
tst.qrVerifier(t, resp)
}