[WebProfilerBundle] fix test after ajax path updated

This commit is contained in:
Amrouche Hamza 2018-02-24 20:41:23 +01:00
parent 51c20fc8c5
commit 77dfc90846
No known key found for this signature in database
GPG Key ID: 6968F2785ED4F012

View File

@ -57,8 +57,8 @@ class ConfigurationTest extends TestCase
public function getPositionConfig()
{
return array(
array(array('position' => 'top'), array('intercept_redirects' => false, 'toolbar' => false, 'excluded_ajax_paths' => '^/(app(_[\\w]+)?\\.php/)?_wdt', 'position' => 'top')),
array(array('position' => 'bottom'), array('intercept_redirects' => false, 'toolbar' => false, 'excluded_ajax_paths' => '^/(app(_[\\w]+)?\\.php/)?_wdt', 'position' => 'bottom')),
array(array('position' => 'top'), array('intercept_redirects' => false, 'toolbar' => false, 'excluded_ajax_paths' => '^/((index|app(_[\w]+)?)\.php/)?_wdt', 'position' => 'top')),
array(array('position' => 'bottom'), array('intercept_redirects' => false, 'toolbar' => false, 'excluded_ajax_paths' => '^/((index|app(_[\w]+)?)\.php/)?_wdt', 'position' => 'bottom')),
);
}
}