diff --git a/translators/tmgmt_local/tmgmt_local.module b/translators/tmgmt_local/tmgmt_local.module
index 23cc68e..83576cc 100644
--- a/translators/tmgmt_local/tmgmt_local.module
+++ b/translators/tmgmt_local/tmgmt_local.module
@@ -228,9 +228,7 @@ function tmgmt_local_tmgmt_translator_plugin_info() {
     'description' => t('Allows local users to process translation jobs.'),
     'plugin controller class' => 'TMGMTLocalTranslatorPluginController',
     'ui controller class' => 'TMGMTLocalTranslatorUIController',
-    'default settings' => array(
-      'auto_accept' => TRUE,
-    ),
+
     'map remote languages' => FALSE,
   );
 
diff --git a/translators/tmgmt_local/tmgmt_local.test b/translators/tmgmt_local/tmgmt_local.test
index db133c9..245aad1 100644
--- a/translators/tmgmt_local/tmgmt_local.test
+++ b/translators/tmgmt_local/tmgmt_local.test
@@ -83,7 +83,6 @@ class TMGMTLocalTestCase extends TMGMTBaseTestCase {
     );
     $this->drupalPost('user/' . $translator3->uid . '/edit', $edit, t('Save'));
 
-
     $job1 = $this->createJob('en', 'de');
     $job2 = $this->createJob('de', 'en');
     $job3 = $this->createJob('en', 'fr');
@@ -275,6 +274,15 @@ class TMGMTLocalTestCase extends TMGMTBaseTestCase {
     );
     $this->drupalPost(NULL, $edit, t('Save as completed'));
 
+    // Review and accept the first item.
+    $this->loginAsAdmin();
+    $this->drupalGet('admin/tmgmt/items/1');
+    $this->drupalPost(NULL, array(), t('Save as completed'));
+
+    // Back to the translator.
+    $this->drupalLogin($this->local_translator);
+    $this->drupalGet('translate/1');
+
     // The first item should be accepted now, the second still in progress.
     $this->assertText(t('Completed'));
     $this->assertText(t('Untranslated'));
@@ -367,6 +375,18 @@ class TMGMTLocalTestCase extends TMGMTBaseTestCase {
     $this->clickLink(t('translate'));
     $this->drupalPost(NULL, array(), t('Save as completed'));
 
+    // Keep current path.
+    $save_path = $this->url;
+
+    // Review and accept the second item.
+    $this->loginAsAdmin();
+    $this->drupalGet('admin/tmgmt/items/2');
+    $this->drupalPost(NULL, array(), t('Save as completed'));
+
+    // Back to the saved path.
+    $this->drupalLogin($this->local_translator);
+    $this->drupalGet($save_path);
+
     entity_get_controller('tmgmt_local_task')->resetCache();
     entity_get_controller('tmgmt_local_task_item')->resetCache();
     drupal_static_reset('tmgmt_local_task_statistics_load');
