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

Issue #3283602 by urvashi_vora, eleonel, mrinalini9, ankithashetty, alexpott,...

Issue #3283602 by urvashi_vora, eleonel, mrinalini9, ankithashetty, alexpott, Munavijayalakshmi: Fix repeated words
parent 3388371b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -395,7 +395,7 @@ drupal.autocomplete:
    misc/autocomplete.js: { weight: -1 }
    # The remaining JavaScript assets previously came from core/jquery.ui, a
    # deprecated library.
    # All weights are based on on the requirements defined within each file.
    # All weights are based on the requirements defined within each file.
    # @todo replace with solution in https://drupal.org/node/3076171
    assets/vendor/jquery.ui/ui/widgets/autocomplete-min.js: { weight: -11.7, minified: true }
    assets/vendor/jquery.ui/ui/labels-min.js: { weight: -11.7, minified: true }
@@ -494,7 +494,7 @@ drupal.dialog:
    misc/dialog/dialog.jquery-ui.js: {}
    # The remaining JavaScript assets previously came from core/jquery.ui, a
    # deprecated library.
    # All weights are based on on the requirements defined within each file.
    # All weights are based on the requirements defined within each file.
    # @todo replace with solution in https://drupal.org/node/2158943
    assets/vendor/jquery.ui/ui/widgets/dialog-min.js: { weight: -11.4, minified: true }
    assets/vendor/jquery.ui/ui/widgets/button-min.js: { weight: -11.5, minified: true }
+1 −1
Original line number Diff line number Diff line
@@ -425,7 +425,7 @@ public static function closeConnection($target = NULL, $key = NULL) {
      unset(self::$connections[$key]);
    }
    // Force garbage collection to run. This ensures that client connection
    // objects and results in the connection being being closed are destroyed.
    // objects and results in the connection being closed are destroyed.
    gc_collect_cycles();
  }

+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ class Error {
  const ERROR = 3;

  /**
   * The the default message for logging errors.
   * The default message for logging errors.
   */
  const DEFAULT_ERROR_MESSAGE = '%type: @message in %function (line %line of %file).';

+1 −1
Original line number Diff line number Diff line
@@ -163,7 +163,7 @@ public function testAddBlockFromLibraryWithWeight() {
        'theme' => $default_theme,
      ]);

      // Verify that one link is found, with the the expected link text.
      // Verify that one link is found, with the expected link text.
      $xpath = $this->assertSession()->buildXPathQuery('//a[contains(@href, :href)]', [':href' => $add_url->toString()]);
      $this->assertSession()->elementsCount('xpath', $xpath, 1);
      $this->assertSession()->elementTextEquals('xpath', $xpath, 'Place block');
+1 −1
Original line number Diff line number Diff line
@@ -189,7 +189,7 @@ public function testCRUD() {
    $this->assertTrue($same_id->isNew());
    try {
      $same_id->save();
      $this->fail('Not possible to overwrite an entity entity.');
      $this->fail('Not possible to overwrite an entity.');
    }
    catch (EntityStorageException $e) {
      // Expected exception; just continue testing.
Loading