Fix MockHttpRequest always returning M_UNKNOWN errcode in testing
parent
d9350b0db8
commit
d43b63818c
|
@ -188,7 +188,7 @@ class MockHttpResource(HttpServer):
|
||||||
)
|
)
|
||||||
defer.returnValue((code, response))
|
defer.returnValue((code, response))
|
||||||
except CodeMessageException as e:
|
except CodeMessageException as e:
|
||||||
defer.returnValue((e.code, cs_error(e.msg)))
|
defer.returnValue((e.code, cs_error(e.msg, code=e.errcode)))
|
||||||
|
|
||||||
raise KeyError("No event can handle %s" % path)
|
raise KeyError("No event can handle %s" % path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue