diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php index 0064c4c..7457533 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php @@ -106,6 +106,10 @@ public function testFilledStandardUpgrade() { $this->assertTrue(isset($entity_view_modes['full'])); } + // Ensure that taxonomy terms have a 'changed' timestamp. + $term = entity_load('taxonomy_term', 1); + $this->assertNotEqual($term->getChangedTime(), 0); + // Check that user data has been migrated correctly. $query = db_query('SELECT * FROM {users_data}');