MINOR Correction of "Dataobject" to "DataObject" correct class case

This commit is contained in:
Sean Harvey 2010-05-19 10:26:29 +00:00
parent 5b0318bdf3
commit a0562ae170
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ class DbDatetimeTest extends FunctionalTest {
$query = 'SELECT ' . $this->adapter->formattedDatetimeClause('"Created"', '%U') . ' AS test FROM "SiteTree" WHERE "URLSegment" = \'home\'';
$result = DB::query($query)->value();
$this->matchesRoughly($result, strtotime(Dataobject::get_one('SiteTree',"\"URLSegment\" = 'home'")->Created), 'SiteTree[home]->Created as timestamp');
$this->matchesRoughly($result, strtotime(DataObject::get_one('SiteTree',"\"URLSegment\" = 'home'")->Created), 'SiteTree[home]->Created as timestamp');
}
}