BUG FIX: column names quoted properly (from r100692)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@105623 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-05-25 04:23:18 +00:00
parent 169a7cfb82
commit b717d19457

View File

@ -288,9 +288,9 @@ class DataObjectSetTest extends SapphireTest {
*/
function testInsertFirst() {
// Get one comment
$comment = DataObject::get_one('PageComment', 'Name = \'Joe\'');
$comment = DataObject::get_one('PageComment', '"Name" = \'Joe\'');
// Get all other comments
$set = DataObject::get('PageComment', 'Name != \'Joe\'');
$set = DataObject::get('PageComment', '"Name" != \'Joe\'');
// Duplicate so we can use it later without another lookup
$otherSet = clone $set;