def test_check_throws_error_if_any_number_exceeds_9():
    data = test_data.get_puzzle()
    data[4][5] = 10
    puzzle = Puzzle(data)
    with pytest.raises(AssertionError):
        puzzle._check_limit_exeedings()