diff options
Diffstat (limited to 'modules/tracker')
-rw-r--r-- | modules/tracker/tracker.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/tracker/tracker.test b/modules/tracker/tracker.test index 2f2249738..c5e853d82 100644 --- a/modules/tracker/tracker.test +++ b/modules/tracker/tracker.test @@ -29,11 +29,11 @@ class TrackerTest extends DrupalWebTestCase { $this->drupalLogin($this->user); $page1 = array( - 'title' => $this->randomName(4, 'published_'), + 'title' => $this->randomName(8), 'status' => 1, ); $page2 = array( - 'title' => $this->randomName(4, 'unpublished_'), + 'title' => $this->randomName(8), 'status' => 0, ); $this->drupalCreateNode($page1); @@ -52,12 +52,12 @@ class TrackerTest extends DrupalWebTestCase { $this->drupalLogin($this->user); $page1 = array( - 'title' => $this->randomName(4, 'published_'), + 'title' => $this->randomName(8), 'uid' => $this->user->uid, 'status' => 1, ); $page2 = array( - 'title' => $this->randomName(4, 'unpublished_'), + 'title' => $this->randomName(8), 'uid' => $this->user->uid, 'status' => 0, ); |