Verified Commit 5d0e6445 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3310760 by poker10, Wim Leers: Broken issue links in @todos

(cherry picked from commit a30c59d4)
parent 46aadfc7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ public function computeSmartDefaultSettings(?EditorInterface $text_editor, Filte
      // Overwrite the Editor config entity object's $filterFormat property, to
      // prevent calls to Editor::hasAssociatedFilterFormat() and
      // Editor::getFilterFormat() from loading the FilterFormat from storage.
      // @todo Remove in https://www.drupal.org/project/ckeditor5/issues/3231347.
      // @todo Remove in https://www.drupal.org/project/drupal/issues/3231347.
      $reflector = new \ReflectionObject($text_editor);
      $property = $reflector->getProperty('filterFormat');
      $property->setAccessible(TRUE);
+1 −1
Original line number Diff line number Diff line
@@ -360,7 +360,7 @@ public function testNormalize() {
   * @covers ::normalize
   */
  public function testNormalizeRelated() {
    $this->markTestIncomplete('This fails and should be fixed by https://www.drupal.org/project/drupal/issues/2922121');
    $this->markTestIncomplete('This fails and should be fixed by https://www.drupal.org/project/drupal/issues/3213752');

    [$request, $resource_type] = $this->generateProphecies('node', 'article', 'uid');
    $request->query = new ParameterBag([
+1 −1
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ public function testPreSaveExistingMultipleSpacesString() {
    $entity->test_field = '     ';
    $entity->save();

    // @todo Fix this bug in https://www.drupal.org/project/i/3238399.
    // @todo Fix this bug in https://www.drupal.org/project/drupal/issues/3238399.
    $this->assertSame('     ', $entity->test_field->value);
  }