Skip to content

Commit 0ec9d1a

Browse files
committed
Improve oEmbed tests names
1 parent 3faee18 commit 0ec9d1a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tests/phpunit/tests/oembed/WpEmbed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @group oembed
55
*/
6-
class Tests_Oembed_WpEmbed extends WP_UnitTestCase {
6+
class Tests_oEmbed_WpEmbed extends WP_UnitTestCase {
77
/**
88
* @var WP_Embed
99
*/

tests/phpunit/tests/oembed/filterResult.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @group oembed
55
*/
6-
class Tests_Oembed_FilterResult extends WP_UnitTestCase {
6+
class Tests_oEmbed_FilterResult extends WP_UnitTestCase {
77
public function test_filter_oembed_result_trusted_malicious_iframe() {
88
$html = '<p></p><iframe onload="alert(1)"></iframe>';
99

tests/phpunit/tests/oembed/filterTitleAttributes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @group oembed
55
*/
6-
class Tests_Oembed_FilterTitleAttributes extends WP_UnitTestCase {
6+
class Tests_oEmbed_FilterTitleAttributes extends WP_UnitTestCase {
77
public function data_filter_oembed_iframe_title_attribute() {
88
return array(
99
array(

tests/phpunit/tests/oembed/getResponseData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @group oembed
55
* @covers ::get_oembed_response_data
66
*/
7-
class Tests_Oembed_GetResponseData extends WP_UnitTestCase {
7+
class Tests_oEmbed_GetResponseData extends WP_UnitTestCase {
88
public function set_up() {
99
parent::set_up();
1010

tests/phpunit/tests/oembed/postEmbedUrl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @group oembed
55
*/
6-
class Tests_Oembed_PostEmbedUrl extends WP_UnitTestCase {
6+
class Tests_oEmbed_PostEmbedUrl extends WP_UnitTestCase {
77
public function test_non_existent_post() {
88
$embed_url = get_post_embed_url( 0 );
99
$this->assertFalse( $embed_url );

tests/phpunit/tests/oembed/wpOembed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @group oembed
55
*/
6-
class Tests_Oembed_WpOembed extends WP_UnitTestCase {
6+
class Tests_oEmbed_WPoEmbed extends WP_UnitTestCase {
77
/**
88
* @var WP_oEmbed
99
*/

0 commit comments

Comments
 (0)