From 83a9ac46fec479201341f30e6effb292d44dce26 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Sat, 22 Nov 2014 20:43:56 +0000 Subject: [PATCH] Remove failing test related to `wp_list_pages()`. The test has been added as a patch to #27326. Props MikeHansenMe. See #30284. git-svn-id: https://develop.svn.wordpress.org/trunk@30523 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/post/listPages.php | 32 -------------------------- 1 file changed, 32 deletions(-) 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 ); - } - }