move showScriptName into the common config of tests

This commit is contained in:
Vladimir Zbrailov 2013-12-31 16:21:15 +04:00
parent 9bb1a4d0b3
commit ae60df4599
3 changed files with 3 additions and 6 deletions

View File

@ -7,5 +7,8 @@ return [
'mail' => [ 'mail' => [
'useFileTransport' => true, 'useFileTransport' => true,
], ],
'urlManager' => [
'showScriptName' => true,
],
], ],
]; ];

View File

@ -8,9 +8,6 @@ return yii\helpers\ArrayHelper::merge(
'db' => [ 'db' => [
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_acceptance', 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_acceptance',
], ],
'urlManager' => [
'showScriptName' => true,
],
], ],
] ]
); );

View File

@ -12,9 +12,6 @@ return yii\helpers\ArrayHelper::merge(
'db' => [ 'db' => [
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_functional', 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_functional',
], ],
'urlManager' => [
'showScriptName' => true,
],
], ],
] ]
); );