diff --git a/core/modules/comment/src/Tests/CommentUninstallTest.php b/core/modules/comment/src/Tests/CommentUninstallTest.php index 7c9377f..e48c312 100644 --- a/core/modules/comment/src/Tests/CommentUninstallTest.php +++ b/core/modules/comment/src/Tests/CommentUninstallTest.php @@ -50,7 +50,8 @@ function testCommentUninstallWithField() { try { $this->container->get('module_installer')->uninstall(array('comment')); $this->fail("Expected an exception when uninstall was attempted."); - } catch (ModuleUninstallValidatorException $e) { + } + catch (ModuleUninstallValidatorException $e) { $this->pass("Caught an exception when uninstall was attempted."); } }