aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/objects/sites.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-05-20 20:34:13 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-05-20 20:34:13 +0000
commit0dea3524f9c9e9d2eb136b525c99bad6b6917f52 (patch)
tree696840d93506dadfa99d5fe5ae4c105fe5a1b2ea /engine/tests/objects/sites.php
parente9c576c2827cc582bdfa4200677cdc9f9aa4eb4d (diff)
downloadelgg-0dea3524f9c9e9d2eb136b525c99bad6b6917f52.tar.gz
elgg-0dea3524f9c9e9d2eb136b525c99bad6b6917f52.tar.bz2
Update unit tests for last_action column.
git-svn-id: http://code.elgg.org/elgg/trunk@6118 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/tests/objects/sites.php')
-rw-r--r--engine/tests/objects/sites.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/tests/objects/sites.php b/engine/tests/objects/sites.php
index 696ae3da1..5e23c99ca 100644
--- a/engine/tests/objects/sites.php
+++ b/engine/tests/objects/sites.php
@@ -52,6 +52,7 @@ class ElggCoreSiteTest extends ElggCoreUnitTest {
$attributes['access_id'] = ACCESS_PRIVATE;
$attributes['time_created'] = '';
$attributes['time_updated'] = '';
+ $attributes['last_action'] = '';
$attributes['enabled'] = 'yes';
$attributes['tables_split'] = 2;
$attributes['tables_loaded'] = 0;
@@ -61,7 +62,7 @@ class ElggCoreSiteTest extends ElggCoreUnitTest {
$this->assertIdentical($this->site->expose_attributes(), $attributes);
}
-
+
public function testElggSiteSaveAndDelete() {
$this->assertTrue($this->site->save());
$this->assertTrue($this->site->delete());