Testing Fundamentals - Testing Types and Levels
Identify the error in the following Python unit test code:
def divide(a, b):
return a / b
assert divide(10, 2) == 5
assert divide(5, 0) == 0