Index: trunk/tests/post/formats.php
===================================================================
--- trunk/tests/post/formats.php	(revision 1301)
+++ trunk/tests/post/formats.php	(working copy)
@@ -114,22 +114,18 @@
 		$content_link = get_content_url( get_post_field( 'post_content', $link_with_post_id ) );
 		$this->assertEquals( $content_link, $link );
 
-		update_post_meta( $link_post_id, '_format_url', $link );
 		$content_link = get_content_url( get_post_field( 'post_content', $link_post_id ) );
 		$this->assertEquals( $content_link, $link );
 
-		update_post_meta( $link_with_post_id, '_format_url', $link );
 		$content_link = get_content_url( get_post_field( 'post_content', $link_with_post_id ) );
 		$this->assertEquals( $content_link, $link );
 
 		$empty_post_id = $this->factory->post->create( array( 'post_content' => '' ) );
-		update_post_meta( $empty_post_id, '_format_url', $link );
 		$content_link = get_content_url( get_post_field( 'post_content', $empty_post_id ) );
 		$this->assertEquals( $content_link, '' );
 
 		$comm_post_id = $this->factory->post->create( array( 'post_content' => $commentary ) );
-		update_post_meta( $comm_post_id, '_format_url', $link );
 		$content_link = get_content_url( get_post_field( 'post_content', $comm_post_id ) );
 		$this->assertEquals( $content_link, '' );
 	}
-}
\ No newline at end of file
+}
