Can't seem to get my Transition to work at all

Hello All , i have been trying for a few days now to get a transition to work with two animations and no matter what i have tried it does not want to work what so ever , i can’t even get the animation to play after the first animation has finished without transitions.

Using transitions the other animation plays for about a nano second and then goes straight back to the original animation despite the original not being on loop.

Code for the transition is below .

if (FirstReaction > 3) {


			 

			DummyAnimator.Play ("Dismissive");
		
		

			Debug.Log ("Dismissive");

			if (DummyAnimator.GetCurrentAnimatorStateInfo(0).normalizedTime >= 1) {

				DummyAnimator.SetTrigger("DisTrigger");

			

					}

		
		}

It’s simple just use an ienumerator coroutine to wait for secounds until the animation is done and the lunch the secound anim.
If this didn’t worked create an animation cycle.
@ryand555