Skip to content

Commit

Permalink
Fixed templates and fixtures paths for advanced application
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Aug 15, 2014
1 parent 386b63b commit 9ea9339
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/advanced/tests/codeception/bin/yii_acceptance
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ $config = yii\helpers\ArrayHelper::merge(
'controllerMap' => [
'fixture' => [
'class' => 'yii\faker\FixtureController',
'fixtureDataPath' => dirname(__DIR__) . '_data/fixtures',
'templatePath' => dirname(__DIR__) . '_data/templates'
'fixtureDataPath' => dirname(__DIR__) . 'common/fixtures',
'templatePath' => dirname(__DIR__) . 'common/templates'
],
],
]
Expand Down
4 changes: 2 additions & 2 deletions apps/advanced/tests/codeception/bin/yii_functional
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ $config = yii\helpers\ArrayHelper::merge(
'controllerMap' => [
'fixture' => [
'class' => 'yii\faker\FixtureController',
'fixtureDataPath' => dirname(__DIR__) . '_data/fixtures',
'templatePath' => dirname(__DIR__) . '_data/templates'
'fixtureDataPath' => dirname(__DIR__) . 'common/fixtures',
'templatePath' => dirname(__DIR__) . 'common/templates'
],
],
]
Expand Down
4 changes: 2 additions & 2 deletions apps/advanced/tests/codeception/bin/yii_unit
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ $config = yii\helpers\ArrayHelper::merge(
'controllerMap' => [
'fixture' => [
'class' => 'yii\faker\FixtureController',
'fixtureDataPath' => dirname(__DIR__) . '_data/fixtures',
'templatePath' => dirname(__DIR__) . '_data/templates'
'fixtureDataPath' => dirname(__DIR__) . 'common/fixtures',
'templatePath' => dirname(__DIR__) . 'common/templates'
],
],
]
Expand Down

0 comments on commit 9ea9339

Please sign in to comment.