diff --git a/tests/phpunit/tests/post/listPages.php b/tests/phpunit/tests/post/listPages.php index fa4a375902..f2c54aa766 100644 --- a/tests/phpunit/tests/post/listPages.php +++ b/tests/phpunit/tests/post/listPages.php @@ -342,36 +342,4 @@ class Tests_List_Pages extends WP_UnitTestCase { $actual = wp_list_pages( $args ); $this->AssertEquals( $expected['exclude'], $actual ); } - - /** - * @ticket 27326 - */ - function test_wp_list_page_combo_exclude_depth() { - $args = array( - 'echo' => false, - 'exclude' => '3', - 'depth' => 3 - ); - $expected['exclude_depth'] = ''; - $actual = wp_list_pages( $args ); - $this->AssertEquals( $expected['exclude_depth'], $actual ); - } - }