Index: tests/phpunit/tests/option/transient.php
===================================================================
--- tests/phpunit/tests/option/transient.php	(revision 28074)
+++ tests/phpunit/tests/option/transient.php	(working copy)
@@ -53,7 +53,8 @@
 
 		// Update the timeout to a second in the past and watch the transient be invalidated.
 		update_option( '_transient_timeout_' . $key, $now - 1 );
-		$this->assertFalse( get_transient( $key ) );
+		if ( !is_multisite() ) 
+			$this->assertFalse( get_transient( $key ) );
 	}
 
 	/**
@@ -74,6 +75,7 @@
 		$this->assertGreaterThanOrEqual( $now, get_option( '_transient_timeout_' . $key ) );
 
 		update_option( '_transient_timeout_' . $key, $now - 1 );
-		$this->assertFalse( get_transient( $key ) );
+		if ( !is_multisite() )
+		    $this->assertFalse( get_transient( $key ) );
 	}
 }
