diff --git a/tests/phpunit/tests/feed/atom.php b/tests/phpunit/tests/feed/atom.php index 0fe0413233..026f5eecc1 100644 --- a/tests/phpunit/tests/feed/atom.php +++ b/tests/phpunit/tests/feed/atom.php @@ -267,7 +267,7 @@ class Tests_Feeds_Atom extends WP_UnitTestCase { $links = xml_find( $entries[ $key ]['child'], 'link' ); $i = 0; foreach ( (array) $links as $link ) { - if ( 'enclosure' == $link['attributes']['rel'] ) { + if ( 'enclosure' === $link['attributes']['rel'] ) { $this->assertEquals( $enclosures[ $i ]['expected']['href'], $link['attributes']['href'] ); $this->assertEquals( $enclosures[ $i ]['expected']['length'], $link['attributes']['length'] ); $this->assertEquals( $enclosures[ $i ]['expected']['type'], $link['attributes']['type'] );