Testing Fundamentals - Why Software Testing Matters
This test code has an error:
What is the error and how to fix it?
def test_divide():
result = 10 / 0
assert result == 0
print('Test passed')What is the error and how to fix it?
