Testing Fundamentals - Testing Models and Approaches
Find the error in this test approach selection code:
def choose_approach(priority):
if priority = 'high':
return 'risk-based'
else:
return 'exploratory'