diff --git a/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php b/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php
index e38988e..dd9c2ee 100644
--- a/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php
+++ b/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php
@@ -829,8 +829,12 @@ public function testDedicatedTableSchema() {
           ),
         ),
       ),
-      'unique keys' => array(),
-      'indexes' => array(),
+      'unique keys' => array(
+        'shape' => array('shape'),
+      ),
+      'indexes' => array(
+        'color' => array('color'),
+      ),
     ));
 
     $field_storage = $this->storageDefinitions[$field_name];
@@ -910,6 +914,10 @@ public function testDedicatedTableSchema() {
         'indexes' => array(
           'bundle' => array('bundle'),
           'revision_id' => array('revision_id'),
+          $field_name . '_color' => array($field_name . '_color'),
+        ),
+        'unique keys' => array(
+          $field_name . '_shape' => array($field_name . '_shape'),
         ),
         'foreign keys' => array(
           $field_name . '_color' => array(
