Index: modules/simpletest/drupal_web_test_case.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/drupal_web_test_case.php,v
retrieving revision 1.10
diff -u -r1.10 drupal_web_test_case.php
--- modules/simpletest/drupal_web_test_case.php	28 May 2008 13:11:11 -0000	1.10
+++ modules/simpletest/drupal_web_test_case.php	31 May 2008 02:55:48 -0000
@@ -368,7 +368,8 @@
     drupal_install_system();
 
     // Add the specified modules to the list of modules in the default profile.
-    $modules = array_unique(array_merge(func_get_args(), drupal_verify_profile('default', 'en')));
+    $args = func_get_args();
+    $modules = array_unique(array_merge(drupal_verify_profile('default', 'en'), $args));
     drupal_install_modules($modules);
 
     // Store the list of modules for use in subsequent drupalModuleEnable calls.
Index: modules/trigger/trigger.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/trigger/trigger.test,v
retrieving revision 1.2
diff -u -r1.2 trigger.test
--- modules/trigger/trigger.test	30 May 2008 07:30:53 -0000	1.2
+++ modules/trigger/trigger.test	31 May 2008 03:00:05 -0000
@@ -62,7 +62,7 @@
 
       // Test 3: The action should be able to be unassigned from a trigger.
       $this->drupalPost('admin/build/trigger/unassign/nodeapi/presave/' . $hash, array(), t('Unassign'));
-      $this->assertRaw(t('Action %action has been unassigned.', array('%action' => 'Publish post')), t('Check to make sure the @action action can be unassigned from the trigger.', array('@action' => $info['name'])));
+      $this->assertRaw(t('Action %action has been unassigned.', array('%action' => ucfirst($info['name']))), t('Check to make sure the @action action can be unassigned from the trigger.', array('@action' => $info['name'])));
       $assigned = db_result(db_query("SELECT COUNT(*) FROM {trigger_assignments} WHERE aid IN ('" . implode("','", $content_actions) . "')"));
       $this->assertFalse($assigned, t('Check to make sure unassign worked properly at the database level.'));
     }
