diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php
index a2f38d180c..fadf4b9088 100644
--- a/core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php
+++ b/core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php
@@ -113,10 +113,6 @@ public function __construct(array $configuration, $plugin_id, $plugin_definition
       if (!$this->entityType->hasKey('bundle')) {
         throw new \InvalidArgumentException(sprintf('A bundle was provided but the entity type (%s) is not bundleable.', $plugin_definition['entity_type']));
       }
-      $bundle_info = array_keys($this->entityTypeBundleInfo->getBundleInfo($this->entityType->id()));
-      if (!in_array($configuration['bundle'], $bundle_info, TRUE)) {
-        throw new \InvalidArgumentException(sprintf('The provided bundle (%s) is not valid for the (%s) entity type.', $configuration['bundle'], $plugin_definition['entity_type']));
-      }
     }
     parent::__construct($configuration + $this->defaultConfiguration, $plugin_id, $plugin_definition, $migration);
   }
