Neural_machine_translation_with_attention Ex1 Unexpected values in the result

Hello everyone.
I have issue with Ex1 in C5W3A1. I have checked everything but I still cannot solve this issue.

My results: context[0][0][0:5].numpy() [0.55389315 0.4612731 0.51288927 0.58480364 0.5580185 ]

AssertionError Traceback (most recent call last)
in
19 print("\033[92mAll tests passed!")
20
—> 21 one_step_attention_test(one_step_attention)

in one_step_attention_test(target)
16 assert np.all(context.numpy() < 1), “All output values must be < 1 in this example”
17
—> 18 assert np.allclose(context[0][0][0:5].numpy(), [0.50877404, 0.57160693, 0.45448175, 0.50074816, 0.53651875]), “Unexpected values in the result”
19 print("\033[92mAll tests passed!")
20

AssertionError: Unexpected values in the result

I can send my code if it makes easier to figure out my issue

Were you able to resolve this problem?