From 904ba09a5583ebc1f54d8bc444d2f4e218e97d83 Mon Sep 17 00:00:00 2001 From: Matt Lord Date: Mon, 10 Jun 2024 11:26:50 -0400 Subject: [PATCH] Correct comment Signed-off-by: Matt Lord --- go/test/endtoend/vreplication/vreplication_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/test/endtoend/vreplication/vreplication_test.go b/go/test/endtoend/vreplication/vreplication_test.go index 1f298992d90..db58f2880c2 100644 --- a/go/test/endtoend/vreplication/vreplication_test.go +++ b/go/test/endtoend/vreplication/vreplication_test.go @@ -724,7 +724,7 @@ func shardCustomer(t *testing.T, testReverse bool, cells []*Cell, sourceCellOrAl execVtgateQuery(t, vtgateConn, sourceKs, "insert into json_tbl(id, j1, j2, j3) values (7, null, 'null', '\"null\"')") waitForNoWorkflowLag(t, vc, targetKs, workflow) for _, tablet := range []*cluster.VttabletProcess{customerTab1, customerTab2} { - // Query the tablet's mysqld directly as the target may have denied table entries. + // Query the tablet's mysqld directly as the targets will have denied table entries. dbc, err := tablet.TabletConn(targetKs, true) require.NoError(t, err) defer dbc.Close()