diff --git a/core/modules/views_ui/src/Tests/UITestBase.php b/core/modules/views_ui/src/Tests/UITestBase.php index a34a610..cb676e0 100644 --- a/core/modules/views_ui/src/Tests/UITestBase.php +++ b/core/modules/views_ui/src/Tests/UITestBase.php @@ -81,7 +81,7 @@ protected function drupalGet($path, array $options = array(), array $headers = a $url = $this->buildUrl($path, $options); // Ensure that each nojs page is accessible via ajax as well. - if (empty($options['no_ajax_check']) && strpos($url, 'nojs') !== FALSE) { + if (strpos($url, 'nojs') !== FALSE) { $url = str_replace('nojs', 'ajax', $url); $this->drupalGet($url, $options, $headers); $this->assertResponse(200);