diff --git a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/GroupedExposedFilterTest.php b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/GroupedExposedFilterTest.php index d3819d4..5a173a9 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/GroupedExposedFilterTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/GroupedExposedFilterTest.php @@ -74,12 +74,12 @@ public function testGroupedFilterValuesUI() { // Test that the 'min' field is shown and that it contains the right value. $between_from = $page->findField('options[group_info][group_items][1][value][min]'); - $this->assertTrue($between_from->isVisible()); + $this->assertNotEmpty($between_from->isVisible()); $this->assertEquals('2015-01-01', $between_from->getValue()); // Test that the 'max' field is shown and that it contains the right value. $between_to = $page->findField('options[group_info][group_items][1][value][max]'); - $this->assertTrue($between_to->isVisible()); + $this->assertNotEmpty($between_to->isVisible()); $this->assertEquals('2016-01-01', $between_to->getValue()); } diff --git a/core/modules/views/views.install b/core/modules/views/views.install index 30ac79c..3704712 100644 --- a/core/modules/views/views.install +++ b/core/modules/views/views.install @@ -408,3 +408,19 @@ function views_update_8200() { /** * @} End of "addtogroup updates-8.2.0". */ + +/** + * @addtogroup updates-8.2.x + * @{ + */ + +/** + * Rebuild caches to ensure schema changes are read in. + */ +function views_update_8201() { + // Empty update to cause a cache rebuild so that the schema changes are read. +} + +/** + * @} End of "addtogroup updates-8.2.x". + */