Skip to content

Commit

Permalink
fixing a few tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Sep 29, 2012
1 parent 5e7cc7b commit b4ff056
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Core/Contact/Test/Case/Model/TimeZoneTest.php
Expand Up @@ -13,7 +13,7 @@ class TimeZoneTest extends CakeTestCase {
* @var array
*/
public $fixtures = array(
'plugin.contact.time_zone'
//'plugin.contact.time_zone'
);

/**
Expand Down
4 changes: 1 addition & 3 deletions Core/Contents/Test/Case/Model/GlobalPageTest.php
Expand Up @@ -12,9 +12,7 @@ class GlobalPageTest extends CakeTestCase {
*
* @var array
*/
public $fixtures = array(
'plugin.contents.global_page'
);
public $fixtures = array();

/**
* setUp method
Expand Down
2 changes: 1 addition & 1 deletion Core/Contents/Test/Fixture/GlobalContentFixture.php
Expand Up @@ -26,7 +26,7 @@ class GlobalContentFixture extends CakeTestFixture {
'group_id' => array('type' => 'string', 'null' => false, 'default' => '0', 'length' => 36, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'layout_id' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 36, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'author_id' => array('type' => 'string', 'null' => true, 'default' => null, 'length' => 36, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'author_alias' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 50, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'author_alias' => array('type' => 'string', 'null' => false, 'default' => '', 'length' => 50, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'editor_id' => array('type' => 'string', 'null' => true, 'default' => null, 'length' => 36, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'editor_alias' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 50, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'canonical_url' => array('type' => 'text', 'null' => true, 'default' => null, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
Expand Down
20 changes: 0 additions & 20 deletions Core/Contents/Test/Fixture/GlobalPageFixture.php

This file was deleted.

0 comments on commit b4ff056

Please sign in to comment.