(str string)
| 617 | } |
| 618 | |
| 619 | func errorContainsString(str string) func(*testing.T, error) { |
| 620 | return func(t *testing.T, err error) { |
| 621 | require.Error(t, err) |
| 622 | assert.Contains(t, err.Error(), str) |
| 623 | } |
| 624 | } |
| 625 | |
| 626 | type grpcConfig struct { |
| 627 | MaxRecvMsgSize int `yaml:"max_recv_msg_size"` |
no test coverage detected