Skip to content

Commit

Permalink
fixing gallery tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Sep 30, 2012
1 parent 95407e6 commit 4decbdb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 28 deletions.
27 changes: 0 additions & 27 deletions Core/Locks/Test/Fixture/GlobalLockFixture.php

This file was deleted.

9 changes: 9 additions & 0 deletions Core/Locks/Test/Fixture/LockFixture.php
Expand Up @@ -8,6 +8,8 @@
class LockFixture extends CakeTestFixture {
public $name = 'Lock';

public $table = 'global_locks';

public $fields = array(
'id' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 36, 'key' => 'primary', 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'class' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 128, 'key' => 'index', 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
Expand All @@ -22,5 +24,12 @@ class LockFixture extends CakeTestFixture {
);

public $records = array(
array(
'id' => 'lock-1',
'class' => 'Blog.Post',
'foreign_key' => 'post-1',
'user_id' => '1',
'created' => '2012-06-21 16:44:36'
),
);
}
2 changes: 1 addition & 1 deletion Plugin/Gallery
Submodule Gallery updated from 9095ce to 887525

0 comments on commit 4decbdb

Please sign in to comment.