diff --git project.test project.test
index 661350d..a6a5cb4 100644
--- project.test
+++ project.test
@@ -21,18 +21,18 @@ class ProjectWebTestCase extends DrupalWebTestCase {
    *   An array of form values to be passed to DrupalWebTestCase::drupalPost().
    */
   function createProject($edit = array()) {
-    if (empty($edit)) {
-      $edit['title'] = $this->randomName();
-      $edit['project[uri]'] = $this->randomName(8);
-      $edit['body'] = $this->randomString(128);
-      $edit['project[homepage]'] = 'http://example.com/' . $this->randomName();
-      $edit['project[documentation]'] = 'http://example.com/' . $this->randomName();
-      $edit['project[license]'] = 'http://example.com/' . $this->randomName();
-      $edit['project[screenshots]'] = 'http://example.com/' . $this->randomName();
-      $edit['project[changelog]'] = 'http://example.com/' . $this->randomName();
-      $edit['project[cvs]'] = 'http://example.com/' . $this->randomName();
-      $edit['project[demo]'] = 'http://example.com/' . $this->randomName();
-    }
+    $edit += array(
+      'title' => $this->randomName(),
+      'project[uri]' => $this->randomName(8),
+      'body' => $this->randomString(128),
+      'project[homepage]' => 'http://example.com/' . $this->randomName(),
+      'project[documentation]' => 'http://example.com/' . $this->randomName(),
+      'project[license]' => 'http://example.com/' . $this->randomName(),
+      'project[screenshots]' => 'http://example.com/' . $this->randomName(),
+      'project[changelog]' => 'http://example.com/' . $this->randomName(),
+      'project[cvs]' => 'http://example.com/' . $this->randomName(),
+      'project[demo]' => 'http://example.com/' . $this->randomName(),
+    );
 
     $this->drupalPost('node/add/project-project', $edit, t('Save'));
     $this->assertRaw(t('!post %title has been created.', array('!post' => 'Project', '%title' => $edit["title"])), t('Project created.'));
