Mean-Normalize the Data in Week 1 Assignment

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.

Hello @Aditya_Kancharla
Welcome to Deeplearning.ai community !!!
You have posted your query under general discussion. If you post it under respective course and week your query may get more visibility from mentors and fellow learners.
Kindly use :pencil2: symbol which is next to the topic to recategorize

Hi @Aditya_Kancharla ,

This AssertionError said there are mistakes in your answer.
And also said, perhaps you might be using a global variable defined outside of the function.

In python, we can access global variables from inside a function.
Therefore, we sometimes make a mistake that unintentionally updates the value of a global variable.

Kind regards,
Nakamura