$ pytest test_example.py
============================= test session starts ==============================
...
collected 1 item
test_example.py F [100%]
=================================== FAILURES ===================================
_________________________ test_first_n_square_numbers __________________________
def test_first_n_square_numbers():
> assert first_n_square_numbers(3) == [1, 4, 9]
E assert [0, 1, 4] == [1, 4, 9]
E
E At index 0 diff: 0 != 1
E Use -v to get more diff
test_example.py:5: AssertionError
=========================== short test summary info ============================
FAILED test_example.py::test_first_n_square_numbers - assert [0, 1, 4] == [1,...
============================== 1 failed in 0.03s ===============================