Index: modules/poll/poll.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/poll/poll.test,v
retrieving revision 1.4
diff -u -p -r1.4 poll.test
--- modules/poll/poll.test	26 May 2008 17:12:55 -0000	1.4
+++ modules/poll/poll.test	5 Aug 2008 07:05:42 -0000
@@ -34,9 +34,9 @@ class PollTestCase extends DrupalWebTest
     if ($test_preview) {
       $this->drupalPost(NULL, $edit, t('Preview'));
       foreach($choices as $k => $choice_text) {
-        $this->assertRaw($choice_text, "Choice $k found in preview");
+        $this->assertRaw($choice_text, t('Choice @choice found in preview', array('@choice' => $k)));
         $themed_bar = theme('poll_bar', $choice_text, 0, 0, FALSE, FALSE);
-        $this->assertRaw($themed_bar, "Choice $k bar is themed");
+        $this->assertRaw($themed_bar, t('Choice @choice bar is themed', array('@choice' => $k)));
       }
       list($edit, $index) = $this->_pollGenerateEdit($title, $choices, $index);
     }
Index: modules/simpletest/drupal_web_test_case.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/drupal_web_test_case.php,v
retrieving revision 1.27
diff -u -p -r1.27 drupal_web_test_case.php
--- modules/simpletest/drupal_web_test_case.php	18 Jul 2008 07:30:34 -0000	1.27
+++ modules/simpletest/drupal_web_test_case.php	5 Aug 2008 06:58:34 -0000
@@ -637,6 +637,7 @@ class DrupalWebTestCase {
     $args = func_get_args();
     $modules = array_unique(array_merge(drupal_verify_profile('default', 'en'), $args));
     drupal_install_modules($modules);
+    module_load_all();
 
     // Run default profile tasks.
     $task = 'profile';
