My Pomodoro Clock Project - Why won't it pass reset test?

My Pomodoro Clock passes 28 out of 29 tests.

The one test it fails is:

  • User Story #11: When I click the element with the id of reset , any running timer should be stopped, the value within id="break-length" should return to 5 , the value within id="session-length" should return to 25, and the element with id="time-left" should reset to it’s default state.

My reset button does exactly that. Why isn’t it passing the test?

I see other people have posted on this same issue and gotten no responses. Could it be an issue with the test? I hope someone can help me out. Thanks!

CRAP! Never mind, I just figured it out. I forgot to reset the element with ID ‘timer-label’ back to its original state in my reset function. It works now. Thanks anyway!