Question: 
Write a function to add the given tuple to the given list.


Model's Code:
def add_tuple(lst, tpl):
    return lst + list(tpl)



Sample Correct Code:
def add_tuple(test_list, test_tup):
  test_list += test_tup
  return (test_list) 


Asserts:
assert add_tuple([5, 6, 7], (9, 10)) == [5, 6, 7, 9, 10]
assert add_tuple([6, 7, 8], (10, 11)) == [6, 7, 8, 10, 11]
assert add_tuple([7, 8, 9], (11, 12)) == [7, 8, 9, 11, 12]


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 750 of 974: 567/750 (75.6%): success