Index: wp-testcase/test-xmlrpc-api/test_wp_getPost.php
===================================================================
--- wp-testcase/test-xmlrpc-api/test_wp_getPost.php	(revision 693)
+++ wp-testcase/test-xmlrpc-api/test_wp_getPost.php	(working copy)
@@ -59,7 +59,7 @@
 		$this->assertInternalType( 'string', $result['ping_status'] );
 		$this->assertInternalType( 'bool', $result['sticky'] );
 		$this->assertInternalType( 'string', $result['post_format'] );
-		$this->assertInternalType( 'string', $result['post_thumbnail'] );
+		$this->assertInternalType( 'array', $result['post_thumbnail'] );
 
 		// Check expected values
 		$this->assertStringMatchesFormat( '%d', $result['post_id'] );
@@ -70,7 +70,6 @@
 		$this->assertEquals( $this->post_data['post_excerpt'], $result['post_excerpt'] );
 		$this->assertEquals( $this->post_data['post_content'], $result['post_content'] );
 		$this->assertEquals( url_to_postid( $result['link'] ), $this->post_id );
-		$this->assertEquals( '', $result['post_thumbnail'] );
 
 		remove_theme_support( 'post-thumbnails' );
 	}
