diff -up tests-orig/page_creation.test tests/page_creation.test
--- tests-orig/page_creation.test	2007-06-23 12:23:44.000000000 +0200
+++ tests/page_creation.test	2007-08-03 14:16:21.751003125 +0200
@@ -25,7 +25,7 @@ class PageCreationTest extends  DrupalTe
     $edit = array();
     $edit['title']    = '!SimpleTest test node! ' . $this->randomName(10);
     $edit['body']     = '!SimpleTest test body! ' . $this->randomName(32) . ' ' . $this->randomName(32);
-    $this->drupalPostRequest('node/add/page', $edit, 'Submit');
+    $this->drupalPostRequest('node/add/page', $edit, 'Save');
     
     $this->assertWantedRaw(t('Your %post has been created.', array ('%post' => 'Page')), 'Page created');
     
diff -up tests-orig/profile_module.test tests/profile_module.test
--- tests-orig/profile_module.test	2007-08-03 14:10:47.970143125 +0200
+++ tests/profile_module.test	2007-08-03 13:59:05.722255376 +0200
@@ -88,7 +88,7 @@ class ProfileModuleTestSingle extends Dr
     $edit = array();
     $checking = array();
     $edit[$form_name] = $this->randomName(20);
-    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Submit' , 0);
+    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Save' , 0);
     $this->_browser->get(url("user/". $user->uid));
 
     // checking profile page
@@ -202,7 +202,7 @@ class ProfileModuleTestTextarea extends 
     $edit = array();
     $checking = array();
     $edit[$form_name] = $this->randomName(20);
-    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Submit' , 0);
+    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Save' , 0);
     $this->_browser->get(url("user/". $user->uid));
 
     // checking profile page
@@ -316,7 +316,7 @@ class ProfileModuleTestFreelist extends 
     $edit = array();
     $checking = array();
     $edit[$form_name] = $this->randomName(20);
-    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Submit' , 0);
+    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Save' , 0);
     $this->_browser->get(url("user/". $user->uid));
 
     // checking profile page
@@ -431,7 +431,7 @@ class ProfileModuleTestCheckbox extends 
     $edit = array();
     $checking = array();
     $edit[$form_name] = 1;
-    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Submit' , 0);
+    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Save' , 0);
     $this->_browser->get(url("user/". $user->uid));
     // checking profile page
     $this->assertWantedText($title, "Checking checkbox");
@@ -544,7 +544,7 @@ class ProfileModuleTestUrl extends Drupa
     $edit = array();
     $checking = array();
     $edit[$form_name] = 'http://www.' . $this->randomName(10). '.org';
-    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Submit' , 0);
+    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Save' , 0);
     $this->_browser->get(url("user/". $user->uid));
 
     // checking profile page
@@ -667,7 +667,7 @@ class ProfileModuleTestSelection extends
     $element = rand(0,2);
     $key = $form_name;
     $edit[$key] = rtrim($op_tab[$element]);
-    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Submit' , 0);
+    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Save' , 0);
     $this->_browser->get(url("user/". $user->uid));
 
     // checking profile page
@@ -796,7 +796,7 @@ class ProfileModuleTestDate extends Drup
                        'M' => map_month(1),
                        'Y' => 1983);
     $data = strtr($format, $replace);
-    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Submit' , 0);
+    $this->drupalPostRequest("user/". $user->uid. "/edit/$my_category", $edit, 'Save' , 0);
     $this->_browser->get(url("user/". $user->uid));
 
     // checking profile page
diff -up tests-orig/taxonomy.module.test tests/taxonomy.module.test
--- tests-orig/taxonomy.module.test	2007-08-03 14:10:47.970143125 +0200
+++ tests/taxonomy.module.test	2007-08-03 13:33:25.149975624 +0200
@@ -304,7 +304,7 @@ class TaxonomyTestNodeApi extends Drupal
     // multiple slect box was failing through drupalPostRequest. Use raw POST instead
     // Failing because they were being sent/handled wrong (earnest.berry@gmail.com <Souvent22>)
     $action = url('node/add/story', array('absolute' => TRUE));
-    $this->drupalPostRequest($action, $edit, 'Submit', $edit_multi);
+    $this->drupalPostRequest($action, $edit, 'Save', $edit_multi);
     $content = $this->drupalGetContent();
     $patternArray['body text'] = $body;
     $patternArray['title'] = $title;
@@ -348,7 +348,7 @@ class TaxonomyTestNodeApi extends Drupal
     // than other form/field types
     $edit_multi = array('taxonomy-' . $vid => $parent);
     
-    $this->drupalPostRequest('node/'. $node->nid .'/edit', $edit, 'Submit', $edit_multi);
+    $this->drupalPostRequest('node/'. $node->nid .'/edit', $edit, 'Save', $edit_multi);
 
     // TODO Do a MUCH better check here of the information msg
     $patternArray['information message'] = 'been updated';
Only in tests: tests
diff -up tests-orig/upload_tests.test tests/upload_tests.test
--- tests-orig/upload_tests.test	2007-08-03 14:10:47.970143125 +0200
+++ tests/upload_tests.test	2007-08-03 13:34:58.583814875 +0200
@@ -43,7 +43,7 @@ class UploadPictureTests extends DrupalT
     // not a image
     $img_path = realpath(drupal_get_path('module', 'simpletest'). "/tests/upload_tests.test");
     $edit = array('files[picture_upload]' => $img_path);
-    $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Submit' );
+    $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Save' );
     $this->assertWantedText(t('The selected file @file could not be uploaded. Only JPEG, PNG and GIF images are allowed.', array('@file' => 'upload_tests.test')), 'The uploaded file was not an image.');
      variable_set('user_pictures', $old_pic_set);
 
@@ -89,7 +89,7 @@ class UploadPictureTests extends DrupalT
 
         // TEST:
         $edit = array('picture' => $img_path);
-        $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Submit' );
+        $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Save' );
         $file_dir = variable_get('file_directory_path', 'files');
         $picture_dir = variable_get('user_picture_path', 'pictures');
         $pic_path = $file_dir .'/'.$picture_dir .'/picture-'.$user->uid.'.jpg';
@@ -146,7 +146,7 @@ class UploadPictureTests extends DrupalT
 
         // TEST:
         $edit = array('picture' => $img_path);
-        $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Submit' );
+        $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Save' );
         $file_dir = variable_get('file_directory_path', 'files');
         $picture_dir = variable_get('user_picture_path', 'pictures');
         $pic_path = $file_dir .'/'.$picture_dir .'/picture-'.$user->uid.'.jpg';
@@ -201,7 +201,7 @@ class UploadPictureTests extends DrupalT
 
         // TEST:
         $edit = array('picture' => $img_path);
-        $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Submit' );
+        $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Save' );
         $text = t('The uploaded image is too large; the maximum dimensions are %dimensions pixels.', array('%dimensions' => variable_get('user_picture_dimensions', '85x85')));
         $this->assertWantedText($text, 'Checking response on invalid image (dimensions).');
 
@@ -250,7 +250,7 @@ class UploadPictureTests extends DrupalT
         variable_set('user_picture_file_size', $test_size);
 
         $edit = array('picture' => $img_path);
-        $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Submit' );
+        $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Save' );
         $text = t('The uploaded image is too large; the maximum file size is %size kB.', array('%size' => variable_get('user_picture_file_size', '30')));
         $this->assertWantedText($text, 'Checking response on invalid image size.');
 
@@ -301,7 +301,7 @@ class UploadPictureTests extends DrupalT
 
       // TEST:
       $edit = array('files[picture_upload]' => $img_path);
-      $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Submit' );
+      $this->drupalPostRequest('user/'.$user->uid.'/edit', $edit, 'Save' );
       $picture_dir = variable_get('user_picture_path', 'pictures');
       $pic_path = file_directory_path() .'/'.$picture_dir .'/picture-'.$user->uid.'.jpg';
 
diff -up tests-orig/user_registration_test.test tests/user_registration_test.test
--- tests-orig/user_registration_test.test	2007-06-23 12:23:44.000000000 +0200
+++ tests/user_registration_test.test	2007-08-03 13:44:33.259729875 +0200
@@ -44,7 +44,7 @@ class UserRegistrationTest extends Drupa
     $this->assertEqual($user->signature, '','Checking signature field');
     $this->assertTrue(($user->created > time() - 20 ), 0,'Checking creation time.');
     $this->assertEqual($user->status, variable_get('user_register', 1) == 1 ? 1 : 0,'Checking status field');
-    $this->assertEqual($user->timezone, NULL, 'Checking timezone field');
+    $this->assertEqual($user->edit-timezone, NULL, 'Checking timezone field');
     $this->assertEqual($user->language, '', 'Checking language field');
     $this->assertEqual($user->picture, '', 'Check picture field');
     $this->assertEqual($user->init, $mail, 'Check init field');
@@ -69,7 +69,7 @@ class UserRegistrationTest extends Drupa
     $new_pass = user_password();
     $this->assertTrue($this->_browser->setField('pass[pass1]', $new_pass), 'Pass1 field set.');
     $this->assertTrue($this->_browser->setField('pass[pass2]', $new_pass), 'Pass2 field set.');
-    $this->_browser->clickSubmit();
+    $this->_browser->clickSubmit(t('Save'));
     $this->assertText(t('The changes have been saved.'), "Changed password to '$new_pass'");
     
     /* Check if the password changes are present in db */
