diff --git a/core/modules/views/src/Tests/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php b/core/modules/views/src/Tests/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php index eb67d6c..36b7840 100644 --- a/core/modules/views/src/Tests/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php +++ b/core/modules/views/src/Tests/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php @@ -118,7 +118,7 @@ public function testDeleteEntityType() { $this->assertEqual(3, $disabled); } - public function ptestBaseTableRename() { + public function testBaseTableRename() { $this->renameBaseTable(); $this->entityDefinitionUpdateManager->applyUpdates(); @@ -134,7 +134,7 @@ public function ptestBaseTableRename() { $this->assertEqual('entity_test_update_new', $display['display_options']['fields']['name']['table']); } - public function ptestDataTableRename() { + public function testDataTableRename() { $this->updateEntityTypeToTranslatable(); $this->entityDefinitionUpdateManager->applyUpdates(); @@ -153,7 +153,7 @@ public function ptestDataTableRename() { $this->assertEqual('entity_test_update_data_new', $display['display_options']['fields']['name']['table']); } - public function ptestDataTableAddition() { + public function testDataTableAddition() { $this->updateEntityTypeToTranslatable(); $this->entityDefinitionUpdateManager->applyUpdates(); @@ -169,7 +169,7 @@ public function ptestDataTableAddition() { $this->assertEqual('entity_test_update_data', $display['display_options']['fields']['name']['table']); } - public function ptestRevisionEnabling() { + public function testRevisionEnabling() { $this->updateEntityTypeToRevisionable(); $this->entityDefinitionUpdateManager->applyUpdates(); @@ -185,7 +185,7 @@ public function ptestRevisionEnabling() { $this->assertEqual('entity_test_update', $display['display_options']['fields']['name']['table']); } - public function ptestRemoveFields() { + public function testRemoveFields() { $this->addBaseField(); $this->entityDefinitionUpdateManager->applyUpdates(); $this->removeBaseField(); @@ -202,7 +202,7 @@ public function ptestRemoveFields() { $this->assertFalse(isset($display['display_options']['fields']['new_base_field'])); } - public function ptestVariousTableUpdates() { + public function testVariousTableUpdates() { // @fixme ... include a revision field as well. // We want to test the following permutations of entity definition updates: