Index: modules/path/path.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/path/path.test,v
retrieving revision 1.28
diff -u -p -r1.28 path.test
--- modules/path/path.test	7 Dec 2009 06:07:19 -0000	1.28
+++ modules/path/path.test	8 Dec 2009 20:00:04 -0000
@@ -64,7 +64,7 @@ class PathTestCase extends DrupalWebTest
     // Confirm that the alias works.
     $this->drupalGet($edit['alias']);
     $this->assertText($node1->title[LANGUAGE_NONE][0]['value'], 'Alias works.');
-    $this->assertNoResponse(404);
+    $this->assertResponse(200);
 
     // Change alias.
     $pid = $this->getPID($edit['alias']);
@@ -76,7 +76,7 @@ class PathTestCase extends DrupalWebTest
     // Confirm that the alias works.
     $this->drupalGet($edit['alias']);
     $this->assertText($node1->title[LANGUAGE_NONE][0]['value'], 'Changed alias works.');
-    $this->assertNoResponse(404);
+    $this->assertResponse(200);
 
     drupal_static_reset('drupal_lookup_path');
     // Confirm that previous alias no longer works.
@@ -119,7 +119,7 @@ class PathTestCase extends DrupalWebTest
     // Confirm that the alias works.
     $this->drupalGet($edit['path[alias]']);
     $this->assertText($node1->title[LANGUAGE_NONE][0]['value'], 'Alias works.');
-    $this->assertNoResponse(404);
+    $this->assertResponse(200);
 
     // Change alias.
     $previous = $edit['path[alias]'];
@@ -129,7 +129,7 @@ class PathTestCase extends DrupalWebTest
     // Confirm that the alias works.
     $this->drupalGet($edit['path[alias]']);
     $this->assertText($node1->title[LANGUAGE_NONE][0]['value'], 'Changed alias works.');
-    $this->assertNoResponse(404);
+    $this->assertResponse(200);
 
     // Make sure that previous alias no longer works.
     $this->drupalGet($previous);
Index: modules/search/search.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/search/search.test,v
retrieving revision 1.44
diff -u -p -r1.44 search.test
--- modules/search/search.test	7 Dec 2009 06:07:19 -0000	1.44
+++ modules/search/search.test	8 Dec 2009 20:00:11 -0000
@@ -427,7 +427,7 @@ class SearchBlockTestCase extends Drupal
     $this->drupalGet('foo');
     $this->assertResponse(404);
     $this->drupalPost(NULL, $terms, t('Search'));
-    $this->assertNoResponse(404);
+    $this->assertResponse(200);
     $this->assertText('Your search yielded no results');
 
     // Test a search from the block when it doesn't appear on the search page.
Index: modules/simpletest/tests/session.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/session.test,v
retrieving revision 1.20
diff -u -p -r1.20 session.test
--- modules/simpletest/tests/session.test	7 Dec 2009 06:07:19 -0000	1.20
+++ modules/simpletest/tests/session.test	8 Dec 2009 20:00:21 -0000
@@ -309,7 +309,7 @@ class SessionHttpsTestCase extends Drupa
     $this->curlClose();
     $this->drupalGet($this->httpsUrl('admin'), array(), array('Cookie: ' . $cookie));
     $this->assertText(t('Administer'));
-    $this->assertNoResponse(403);
+    $this->assertResponse(200);
 
     // Verify that user is not logged in on non-secure URL.
     if (!$is_https) {
@@ -375,7 +375,7 @@ class SessionHttpsTestCase extends Drupa
         $this->drupalGet($url, array(), array('Cookie: ' . $cookie));
         if ($cookie_key == $url_key) {
           $this->assertText(t('Administer'));
-          $this->assertNoResponse(403);
+          $this->assertResponse(200);
         }
         else {
           $this->assertNoText(t('Administer'));
