diff --git a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
index 64e34d1..0591deb 100644
--- a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
+++ b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
@@ -359,6 +359,9 @@ public function load() {
       'name' => 'syslog_identity',
       'value' => 's:6:"drupal";',
     ))->values(array(
+      'name' => 'teaser_length',
+      'value' => 'i:1024;',
+    ))->values(array(
       'name' => 'theme_default',
       'value' => 's:6:"bartik";',
     ))->values(array(
@@ -476,4 +479,4 @@ public function load() {
   }
 
 }
-#a571d354b6652603b017f9647ce0975e
+#dbc0f593050ff48cc18dfa4fed47daaf
diff --git a/core/modules/text/migration_templates/d6_text_settings.yml b/core/modules/text/migration_templates/d6_text_settings.yml
deleted file mode 100644
index 8f6fff3..0000000
--- a/core/modules/text/migration_templates/d6_text_settings.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-id: d6_text_settings
-label: Drupal 6 teaser length configuration
-migration_tags:
-  - Drupal 6
-source:
-  plugin: variable
-  variables:
-    - teaser_length
-process:
-  default_summary_length: teaser_length
-destination:
-  plugin: config
-  config_name: text.settings
diff --git a/core/modules/text/migration_templates/text_settings.yml b/core/modules/text/migration_templates/text_settings.yml
new file mode 100644
index 0000000..45d426d
--- /dev/null
+++ b/core/modules/text/migration_templates/text_settings.yml
@@ -0,0 +1,14 @@
+id: text_settings
+label: Drupal teaser length configuration
+migration_tags:
+  - Drupal 6
+  - Drupal 7
+source:
+  plugin: variable
+  variables:
+    - teaser_length
+process:
+  default_summary_length: teaser_length
+destination:
+  plugin: config
+  config_name: text.settings
diff --git a/core/modules/text/src/Tests/Migrate/d6/MigrateTextConfigsTest.php b/core/modules/text/src/Tests/Migrate/d6/MigrateTextConfigsTest.php
index 929d72d..cd8b037 100644
--- a/core/modules/text/src/Tests/Migrate/d6/MigrateTextConfigsTest.php
+++ b/core/modules/text/src/Tests/Migrate/d6/MigrateTextConfigsTest.php
@@ -32,7 +32,7 @@ class MigrateTextConfigsTest extends MigrateDrupal6TestBase {
   protected function setUp() {
     parent::setUp();
     $this->loadDumps(['Variable.php']);
-    $this->executeMigration('d6_text_settings');
+    $this->executeMigration('text_settings');
   }
 
   /**
diff --git a/core/modules/text/src/Tests/Migrate/d7/MigrateTextSettingsTest.php b/core/modules/text/src/Tests/Migrate/d7/MigrateTextSettingsTest.php
new file mode 100644
index 0000000..3f52b36
--- /dev/null
+++ b/core/modules/text/src/Tests/Migrate/d7/MigrateTextSettingsTest.php
@@ -0,0 +1,38 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\text\Tests\Migrate\d7\MigrateTextSettingsTest.
+ */
+
+namespace Drupal\text\Tests\Migrate\d7;
+
+use Drupal\migrate_drupal\Tests\d7\MigrateDrupal7TestBase;
+
+/**
+ * Tests migration of Text variables to configuration.
+ *
+ * @group text
+ */
+class MigrateTextSettingsTest extends MigrateDrupal7TestBase {
+
+  public static $modules = ['text'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->installConfig(['text']);
+    $this->loadDumps(['Variable.php']);
+    $this->executeMigration('text_settings');
+  }
+
+  /**
+   * Tests migration of Text's settings to configuration.
+   */
+  public function testMigration() {
+    $this->assertIdentical(1024, \Drupal::config('text.settings')->get('default_summary_length'));
+  }
+
+}
