Correct a unit test for custom icon functionality.

See #36086


git-svn-id: https://develop.svn.wordpress.org/trunk@36952 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2016-03-10 19:58:49 +00:00
parent 4db068e862
commit 93942d330e
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ class Tests_General_Template extends WP_UnitTestCase {
'itemprop' => 'logo',
) );
$this->expectOutputString( '<a href="http://example.org/" class="custom-logo-link" rel="home" itemprop="url">' . $image . '</a>' );
$this->expectOutputString( '<a href="http://' . WP_TESTS_DOMAIN . '/" class="custom-logo-link" rel="home" itemprop="url">' . $image . '</a>' );
the_custom_logo();
}