Testing Fundamentals - Testing Types and Levels
Given the following Python code for regression testing outputs, what will be the printed result?
old_results = [10, 20, 30]
new_results = [10, 20, 25]
if old_results == new_results:
print("Test Passed")
else:
print("Test Failed")