Navigation Menu

Skip to content

Commit

Permalink
Correct namespace used when generating test cases.
Browse files Browse the repository at this point in the history
Fixes #3912
  • Loading branch information
markstory committed Jul 11, 2013
1 parent a7cb84a commit 32b05f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/default/classes/test.ctp
Expand Up @@ -17,7 +17,7 @@ use Cake\Utility\Inflector;

echo "<?php\n";
?>
namespace <?php echo $baseNamespace; ?>\TestCase\<?php echo $subNamespace ?>;
namespace <?php echo $baseNamespace; ?>\Test\TestCase\<?php echo $subNamespace ?>;

<?php foreach ($uses as $dependency): ?>
use <?php echo $dependency; ?>;
Expand Down

0 comments on commit 32b05f4

Please sign in to comment.