func agentRpcTestMultiRestore(t *testing.T, client tmclient.TabletManagerClient, ti *topo.TabletInfo) { logChannel, errFunc, err := client.MultiRestore(ti, testMultiRestoreArgs, time.Minute) if err != nil { t.Fatalf("MultiRestore failed: %v", err) } compareLoggedStuff(t, "MultiRestore", logChannel, 1000) err = errFunc() compareError(t, "MultiRestore", err, true, testMultiRestoreCalled) }