diff --git a/core/modules/editor/src/Tests/EditorFilterIntegration.php b/core/modules/editor/src/Tests/EditorFilterIntegration.php index d5023e5..7cdbb86 100644 --- a/core/modules/editor/src/Tests/EditorFilterIntegration.php +++ b/core/modules/editor/src/Tests/EditorFilterIntegration.php @@ -44,6 +44,12 @@ public function testTextFormatIntegration() { // The paired editor should be disabled too. $this->assertFalse(Editor::load($format->id())->status()); + // Re-enable the text format. + $format->enable()->save(); + + // The paired editor should be enabled too. + $this->assertTrue(Editor::load($format->id())->status()); + // Completely remove the text format. Usually this cannot occur via UI, but // can be triggered from API. $format->delete();