Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a comment about a bug in a unit test
Added some prints to the original code, and ran with `brownie test -s -k test_picks_winner_correctly` output is ``` tests/test_lottery_unit.py::test_picks_winner_correctly RUNNING lottery deployed funded 0x6951b5Bd815043E3F842c1b026b0Fa888Cc2DD85 with 1e+17 LINK original balance in account 100050000000000000000 original balance in lottery 0 final balance in account 100050000000000000000 final balance in lottery 0 tests/test_lottery_unit.py::test_picks_winner_correctly PASSED ``` After fixing the test, reran and output is ``` tests/test_lottery_unit.py::test_picks_winner_correctly RUNNING lottery deployed funded 0x6951b5Bd815043E3F842c1b026b0Fa888Cc2DD85 with 1e+17 LINK original balance in account 99975000000000000000 original balance in lottery 75000000000000000 final balance in account 100050000000000000000 final balance in lottery 0 tests/test_lottery_unit.py::test_picks_winner_correctly PASSED ```
- Loading branch information