MINOR Fixed SQL quoting bug in FolderTest (caused by r111493) (from r111496)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112916 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-10-19 04:51:22 +00:00
parent d542ddbb40
commit d6c1d3b28d

View File

@ -143,7 +143,7 @@ class FolderTest extends SapphireTest {
* Tests for the bug #5994 - if you don't execute get_by_id prior to the rename or move, it will fail. * Tests for the bug #5994 - if you don't execute get_by_id prior to the rename or move, it will fail.
*/ */
function testRenameFolderAndCheckTheFile() { function testRenameFolderAndCheckTheFile() {
$folder1 = DataObject::get_one('Folder', 'ID='.$this->idFromFixture('Folder', 'folder1')); $folder1 = DataObject::get_one('Folder', '"ID"='.$this->idFromFixture('Folder', 'folder1'));
$folder1->Name = 'FileTest-folder1-changed'; $folder1->Name = 'FileTest-folder1-changed';
$folder1->write(); $folder1->write();