From 474115d2092a8f335c9224445ffbc3d012cad56b Mon Sep 17 00:00:00 2001 From: Tim Vaillancourt Date: Tue, 18 Feb 2025 20:53:40 +0100 Subject: [PATCH] fix ineffassign Signed-off-by: Tim Vaillancourt --- go/vt/vtorc/inst/shard_dao_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/go/vt/vtorc/inst/shard_dao_test.go b/go/vt/vtorc/inst/shard_dao_test.go index 3e4f71efcae..8cf67f10ee6 100644 --- a/go/vt/vtorc/inst/shard_dao_test.go +++ b/go/vt/vtorc/inst/shard_dao_test.go @@ -110,6 +110,7 @@ func TestSaveReadAndDeleteShard(t *testing.T) { // ReadAllShardNames allShardNames, err := ReadAllShardNames() + require.NoError(t, err) ksShards, found := allShardNames[tt.keyspaceName] require.True(t, found) require.Equal(t, []string{tt.shardName}, ksShards)