diff --git a/cake/console/libs/tasks/model.php b/cake/console/libs/tasks/model.php index 59805ba63..454edbfe7 100644 --- a/cake/console/libs/tasks/model.php +++ b/cake/console/libs/tasks/model.php @@ -648,7 +648,7 @@ class ModelTask extends Shell { $filename = Inflector::underscore($className).'.test.php'; $this->out("\nBaking unit test for $className..."); - $header = '$Id' . ':'; + $header = '$Id'; $content = ""; return $this->createFile($path . $filename, $content); } @@ -813,7 +813,7 @@ class ModelTask extends Shell { $out .= "}\n"; $path = TESTS . DS . 'fixtures' . DS; $filename = Inflector::underscore($model).'_fixture.php'; - $header = '$Id' . ':'; + $header = '$Id'; $content = ""; $this->out("\nBaking test fixture for $model..."); if ($this->createFile($path . $filename, $content)) {