rpc: improve cancel test (#20752)

This is supposed to fix the occasional failures in 
TestCancel* on Travis CI.
This commit is contained in:
Felix Lange
2020-03-12 11:24:36 +01:00
committed by GitHub
parent 0bdb21f0cb
commit b1efff659e
3 changed files with 15 additions and 8 deletions

View File

@ -45,7 +45,7 @@ func TestServerRegisterName(t *testing.T) {
t.Fatalf("Expected service calc to be registered")
}
wantCallbacks := 7
wantCallbacks := 8
if len(svc.callbacks) != wantCallbacks {
t.Errorf("Expected %d callbacks for service 'service', got %d", wantCallbacks, len(svc.callbacks))
}