diff --git a/core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php b/core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php index 1be0c02..0822eb8 100644 --- a/core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php +++ b/core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php @@ -62,7 +62,7 @@ public function testExposedAdminUi() { // The first time the filter UI is displayed, the operator and the // value forms should be shown. $this->assertFieldById('edit-options-operator-in', 'in', 'Operator In exists'); - $this->assertFieldById('edit-options-operator-not-in', 'in', 'Operator Not In exists'); + $this->assertFieldById('edit-options-operator-not-in', 'not in', 'Operator Not In exists'); $this->assertFieldById('edit-options-value-page', '', 'Checkbox for Page exists'); $this->assertFieldById('edit-options-value-article', '', 'Checkbox for Article exists'); @@ -73,7 +73,7 @@ public function testExposedAdminUi() { // After exposing the filter, Operator and Value should be still here. $this->assertFieldById('edit-options-operator-in', 'in', 'Operator In exists'); - $this->assertFieldById('edit-options-operator-not-in', 'in', 'Operator Not In exists'); + $this->assertFieldById('edit-options-operator-not-in', 'not in', 'Operator Not In exists'); $this->assertFieldById('edit-options-value-page', '', 'Checkbox for Page exists'); $this->assertFieldById('edit-options-value-article', '', 'Checkbox for Article exists'); @@ -99,7 +99,7 @@ public function testExposedAdminUi() { // After Un-exposing the filter, Operator and Value should be shown again. $this->assertFieldById('edit-options-operator-in', 'in', 'Operator In exists after hide filter'); - $this->assertFieldById('edit-options-operator-not-in', 'in', 'Operator Not In exists after hide filter'); + $this->assertFieldById('edit-options-operator-not-in', 'not in', 'Operator Not In exists after hide filter'); $this->assertFieldById('edit-options-value-page', '', 'Checkbox for Page exists after hide filter'); $this->assertFieldById('edit-options-value-article', '', 'Checkbox for Article exists after hide filter'); @@ -151,7 +151,7 @@ public function testGroupedFilterAdminUi() { // After click on 'Grouped Filters', the standard operator and value should // not be displayed. $this->assertNoFieldById('edit-options-operator-in', 'in', 'Operator In not exists'); - $this->assertNoFieldById('edit-options-operator-not-in', 'in', 'Operator Not In not exists'); + $this->assertNoFieldById('edit-options-operator-not-in', 'not in', 'Operator Not In not exists'); $this->assertNoFieldById('edit-options-value-page', '', 'Checkbox for Page not exists'); $this->assertNoFieldById('edit-options-value-article', '', 'Checkbox for Article not exists');