Testing Fundamentals - Testing Models and Approaches
Identify the error in this Agile test automation code snippet:
def run_tests(tests):
for test in tests
print(f"Running {test}")
run_tests(['login', 'logout'])