(t *testing.T, e log.Entry)
| 65 | } |
| 66 | |
| 67 | func verifyClientError(t *testing.T, e log.Entry) { |
| 68 | a := assertions.New(t) |
| 69 | a.So(e.Level(), should.Equal, log.InfoLevel) |
| 70 | a.So(e.Message(), should.Equal, "Client error") |
| 71 | } |
| 72 | |
| 73 | func verifyServerError(t *testing.T, e log.Entry) { |
| 74 | a := assertions.New(t) |