Remove test for method that doesnt exist any more

This commit is contained in:
claudiulodro 2017-08-02 13:37:27 -07:00
parent 9bfd21365e
commit ce25737026
1 changed files with 0 additions and 10 deletions

View File

@ -103,14 +103,4 @@ class WC_Tests_Install extends WC_Unit_Test_Case {
$this->assertNull( get_role( 'customer' ) );
$this->assertNull( get_role( 'shop_manager' ) );
}
/**
* Test - in_plugin_update_message.
*/
public function test_in_plugin_update_message() {
ob_start();
WC_install::in_plugin_update_message( array( 'Version' => '2.0.0', 'new_version' => '2.0.0' ) );
$result = ob_get_clean();
$this->assertTrue( is_string( $result ) );
}
}