Test Not Reading Image URL Properly for Product Landing Page Test?

I’m confused because I’ve looked this over for more than 15 minutes and I have no idea why I’m getting this error. Product landing page is failing this test:

“I can see an image within the #header element with a corresponding id=“header-img”. A company logo would make a good image here.”

I have the correct image id in my header:

<header>
<h1 id="header"> Buy Our New Turmeric Extract! </h1>

  <h2><img id="header-img" src="https://source.unsplash.com/random" alt="This is a random Unsplash image"></h2>
    </header>

I’m guessing this must be because the test isn’t properly reading image URL? Is there a default src input we can use there that will work or is there something I’m missing??

This was fixed by removing the header tags (h1, h2) that I had for visual effect. This test doesn’t seem to be too efficient at identifying errors…