Hi,
I keep failing 5 tests (ones which require the function to return True/False): test_check_funds, test_transfer, test_transfer_no_funds, test_withdraw_no_description, and test_withdraw_no_funds
The error message is all different variations of the one below:
I don’t know why it’s saying None != True/False for all of them, clearly it’s seeing the True/False returns for the tests I’m passing. I also find it interesting that the “check” is offset by one, if it started one return sooner I would pass these tests.
When I do these tests individually in pycharm, I get the right returns.
I’m using the check_funds() function at the beginning of the withdraw() and transfer() functions, and check_funds() prints print(bool(True)) or print(bool(False)) as appropriate.
I’m at a loss, thanks for your help!

