diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewAjaxTest.php b/core/modules/views/lib/Drupal/views/Tests/ViewAjaxTest.php index 747dfa0..d28a075 100644 --- a/core/modules/views/lib/Drupal/views/Tests/ViewAjaxTest.php +++ b/core/modules/views/lib/Drupal/views/Tests/ViewAjaxTest.php @@ -66,7 +66,7 @@ public function testAjaxView() { )); $data = json_decode($response); - // Ensure that the view insert commando is part of the result. + // Ensure that the view insert command is part of the result. $this->assertEqual($data[1]->command, 'insert'); $this->assertTrue(strpos($data[1]->selector, '.view-dom-id-') === 0); diff --git a/core/modules/views/tests/Drupal/views/Tests/Controller/ViewAjaxControllerTest.php b/core/modules/views/tests/Drupal/views/Tests/Controller/ViewAjaxControllerTest.php index c4ac06f..3b08a92 100644 --- a/core/modules/views/tests/Drupal/views/Tests/Controller/ViewAjaxControllerTest.php +++ b/core/modules/views/tests/Drupal/views/Tests/Controller/ViewAjaxControllerTest.php @@ -8,11 +8,11 @@ namespace Drupal\views\Tests\Controller { use Drupal\Tests\UnitTestCase; - use Drupal\views\Ajax\ViewAjaxResponse; - use Drupal\views\Controller\ViewAjaxController; +use Drupal\views\Ajax\ViewAjaxResponse; +use Drupal\views\Controller\ViewAjaxController; use Symfony\Component\HttpFoundation\Request; -// @todo Remove this once the constant got converted. +// @todo Remove this once the constant has been converted. if (!defined('DRUPAL_CORE_COMPATIBILITY')) { define('DRUPAL_CORE_COMPATIBILITY', '8.x'); }