diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterCompareTest.php b/core/modules/views/lib/Drupal/views/Tests/Handler/FilterCompareTest.php index 01d92e2..6e81809 100644 --- a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterCompareTest.php +++ b/core/modules/views/lib/Drupal/views/Tests/Handler/FilterCompareTest.php @@ -86,7 +86,7 @@ public function testCompare() { $this->assertIdenticalResultset($view, $expected, $this->columnMap); $view->destroy(); - // Test the is great than operator. + // Test the is greater than operator. $view->initDisplay(); $item = $view->getItem('default', 'filter', 'fields_compare'); $item['operator'] = '>'; @@ -100,7 +100,7 @@ public function testCompare() { $this->assertIdenticalResultset($view, $expected, $this->columnMap); $view->destroy(); - // Test the is great than or equal operator. + // Test the is greater than or equal operator. $view->initDisplay(); $item = $view->getItem('default', 'filter', 'fields_compare'); $item['operator'] = '>=';