Skip to content

Commit

Permalink
fixing feed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Sep 30, 2012
1 parent 971f01a commit 8722987
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Core/Feed/Test/Fixture/FeedFixture.php
Expand Up @@ -7,7 +7,8 @@
*/
class FeedFixture extends CakeTestFixture {
public $name = 'Feed';
public $table = 'global_feed';

public $table = 'global_feeds';

public $fields = array(
'id' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 36, 'key' => 'primary', 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
Expand Down
2 changes: 2 additions & 0 deletions Core/Feed/Test/Fixture/FeedsFeedFixture.php
Expand Up @@ -8,6 +8,8 @@
class FeedsFeedFixture extends CakeTestFixture {
public $name = 'FeedsFeed';

public $table = 'global_feeds_feeds';

public $fields = array(
'id' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 36, 'key' => 'primary'),
'main_feed_id' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 36),
Expand Down

0 comments on commit 8722987

Please sign in to comment.