Question: 
Write a function to check if each element of second tuple is smaller than its corresponding index in first tuple.


Model's Code:
def check_smaller(tup1, tup2):
    return all(b < a for a, b in zip(tup1, tup2))



Sample Correct Code:
def check_smaller(test_tup1, test_tup2):
  res = all(x > y for x, y in zip(test_tup1, test_tup2))
  return (res) 


Asserts:
assert check_smaller((1, 2, 3), (2, 3, 4)) == False
assert check_smaller((4, 5, 6), (3, 4, 5)) == True
assert check_smaller((11, 12, 13), (10, 11, 12)) == True


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

Test 809 of 974: 616/809 (76.1433868974042%): success