diff --git a/core/modules/views_ui/tests/src/Unit/ViewUIObjectTest.php b/core/modules/views_ui/tests/src/Unit/ViewUIObjectTest.php index 11fb516..506bd32 100644 --- a/core/modules/views_ui/tests/src/Unit/ViewUIObjectTest.php +++ b/core/modules/views_ui/tests/src/Unit/ViewUIObjectTest.php @@ -115,7 +115,7 @@ public function testIsLocked() { } /** - * Tests serialization if the ViewUI object. + * Tests serialization of the ViewUI object. */ public function testSerialization() { // Set a container so the DependencySerializationTrait has it. @@ -135,7 +135,7 @@ public function testSerialization() { $serialized = serialize($view_ui); - // Make sure the ViewExecutable clas is not found in the serialized string. + // Make sure the ViewExecutable class is not found in the serialized string. $this->assertSame(strpos($serialized, '"Drupal\views\ViewExecutable"'), FALSE); $unserialized = unserialize($serialized);