example: It's should be returned pass when print `show()` but it actually returns None. ```python @logger.patch def show(): print("message in show") return 'pass' print(show()) ``` output: 2017-06-15 03:14:20,077 - test - DEBUG - message in show None
example:
It's should be returned pass when print
show()but it actually returns None.output:
2017-06-15 03:14:20,077 - test - DEBUG - message in show
None