Confused as to what the following error means, any insight would be helpful.
AssertionError Traceback (most recent call last)
in
1 ### test cell ex1: do not edit this cell
----> 2 make_standard_normal_test(make_standard_normal)
~/work/W1A1/public_tests.py in make_standard_normal_test(target)
54 ]
55
—> 56 multiple_test(test_cases, test_target)
57
58
~/work/W1A1/test_utils.py in multiple_test(test_cases, target)
121 print(‘\033[92m’, success," Tests passed")
122 print(‘\033[91m’, len(test_cases) - success, " Tests failed")
→ 123 raise AssertionError(“Not all tests were passed for {}. Check your equations and avoid using global variables inside the function.”.format(target.name))
AssertionError: Not all tests were passed for test_target. Check your equations and avoid using global variables inside the function.