(proc: FakeProc)
| 88 | process, |
| 89 | pb.Envelope( |
| 90 | id=request.id, |
| 91 | kind=pb.Envelope.KIND_ERROR, |
| 92 | error=pb.ErrorInfo( |
| 93 | code=pb.ERROR_CODE_UNAUTHENTICATED, message="missing token" |
| 94 | ), |
| 95 | ), |
| 96 | ) |
| 97 | with pytest.raises(AuthError, match="missing token"): |
no test coverage detected