Index: trunk/tests/media.php
===================================================================
--- trunk/tests/media.php	(revision 1298)
+++ trunk/tests/media.php	(working copy)
@@ -224,38 +224,23 @@
 This is a sentence that will all of a sudden contain {$html1} and then {$html2} and why not {$html3}
 BLOB;
 
-		$imgless = "This is a sentence that will all of a sudden contain  and then  and why not ";
-		$imgless1 = "This is a sentence that will all of a sudden contain  and then {$html2} and why not {$html3}";
-
 		$images = get_content_images( $blob );
 		$this->assertEquals( $images, array( $html1, $html2, $html3 ) );
 
 		$images = get_content_images( $blob, false );
 		$this->assertEquals( $images, array( $src1, $src2, $src3 ) );
 
-		$copyblob = $blob;
-		$images = get_content_images( $blob, true, true );
+		$images = get_content_images( $blob, true );
 		$this->assertEquals( $images, array( $html1, $html2, $html3 ) );
-		$this->assertEquals( $blob, $imgless );
-		$blob = $copyblob;
 
-		$copyblob = $blob;
-		$images = get_content_images( $blob, false, true );
+		$images = get_content_images( $blob, false );
 		$this->assertEquals( $images, array( $src1, $src2, $src3 ) );
-		$this->assertEquals( $blob, $imgless );
-		$blob = $copyblob;
 
-		$copyblob = $blob;
-		$images = get_content_images( $blob, true, true, 1 );
+		$images = get_content_images( $blob, true, 1 );
 		$this->assertEquals( $images, array( $html1 ) );
-		$this->assertEquals( $blob, $imgless1 );
-		$blob = $copyblob;
 
-		$copyblob = $blob;
-		$images = get_content_images( $blob, false, true, 1 );
+		$images = get_content_images( $blob, false, 1 );
 		$this->assertEquals( $images, array( $src1 ) );
-		$this->assertEquals( $blob, $imgless1 );
-		$blob = $copyblob;
 	}
 
 	/**
@@ -265,7 +250,6 @@
 		$blob =<<<BLOB
 This is a sentence that will all of a sudden contain {$this->img_html}
 BLOB;
-		$imgless = "This is a sentence that will all of a sudden contain ";
 
 		$image = get_content_image( $blob );
 		$this->assertEquals( $image, $this->img_html );
@@ -273,10 +257,6 @@
 		$image = get_content_image( $blob, false );
 		$this->assertEquals( $image, $this->img_url );
 
-		$image = get_content_image( $blob, false, true );
-		$this->assertEquals( $image, $this->img_url );
-		$this->assertEquals( $blob, $imgless );
-
 		$linked_html = '<a href="http://woo.com">' . $this->img_html . '</a>';
 		$blob = "This is a sentence that will all of a sudden contain $linked_html";
 		$image = get_content_image( $blob );
