diff --git a/tests/quicktabs.test b/tests/quicktabs.test
index 79c1595..767e98a 100644
--- a/tests/quicktabs.test
+++ b/tests/quicktabs.test
@@ -56,16 +56,18 @@ class QuicktabsAdminTestCase extends DrupalWebTestCase {
     $edit += array(
       'tabs[0][type]' => 'node',
       'tabs[0][node][nid]' => 1,
+      'tabs[0][node][view_mode]' => 'full',
       'tabs[0][title]' => $tab_title_first,
       'tabs[0][weight]' => 0,
       'tabs[1][type]' => 'node',
       'tabs[1][node][nid]' => 2,
+      'tabs[1][node][view_mode]' => 'full',
       'tabs[1][title]' => $tab_title_second,
       'tabs[1][weight]' => 1,
     );
     // Now add on the tabs info to the $saved array - it's the same as what we
     // put in the edit form but we need it in proper array format.
-    $saved['tabs'] = array(0 => array('type' => 'node', 'nid' => 1, 'title' => $tab_title_first, 'weight' => 0), 1 => array('type' => 'node', 'nid' => 2, 'title' => $tab_title_second, 'weight' => 1));
+    $saved['tabs'] = array(0 => array('type' => 'node', 'nid' => 1, 'view_mode' => 'full', 'title' => $tab_title_first, 'weight' => 0), 1 => array('type' => 'node', 'nid' => 2, 'view_mode' => 'full', 'title' => $tab_title_second, 'weight' => 1));
     $this->drupalPost('admin/structure/quicktabs/add', $edit, t('Save'));
 
     // Check that the quicktabs object is in the database.
@@ -78,7 +80,7 @@ class QuicktabsAdminTestCase extends DrupalWebTestCase {
         // Add some extra default values that we didn't include on the form, for
         // the sake of comparing the two tabs arrays.
         foreach ($value as &$val) {
-          $val += array('teaser' => 0, 'hide_title' => 1);
+          $val += array('hide_title' => 1);
         }
       }
       $this->assertEqual($quicktabs->$property, $value, t('Quicktabs property %property properly saved.', array('%property' => $property)));
@@ -100,15 +102,15 @@ class QuicktabsAdminTestCase extends DrupalWebTestCase {
       'tabs[0][title]' => $tab_title_first,
       'tabs[0][weight]' => 1,
       'tabs[0][node][nid]' => 3,
-      'tabs[0][node][teaser]' => 1,
+      'tabs[0][node][view_mode]' => 'teaser',
       'tabs[0][node][hide_title]' => FALSE,
       'tabs[1][title]' => $tab_title_second,
       'tabs[1][weight]' => 0,
       'tabs[1][node][nid]' => 4,
-      'tabs[1][node][teaser]' => FALSE,
+      'tabs[1][node][view_mode]' => 'teaser',
       'tabs[1][node][hide_title]' => 1,
     );
-    $saved['tabs'] = array(0 => array('type' => 'node', 'nid' => 4, 'title' => $tab_title_second, 'weight' => 0, 'teaser' => 0, 'hide_title' => 1), 1 => array('type' => 'node', 'nid' => 3, 'title' => $tab_title_first, 'weight' => 1, 'teaser' => 1, 'hide_title' => 0));
+    $saved['tabs'] = array(0 => array('type' => 'node', 'nid' => 4, 'title' => $tab_title_second, 'weight' => 0, 'view_mode' => 'teaser', 'hide_title' => 1), 1 => array('type' => 'node', 'nid' => 3, 'title' => $tab_title_first, 'weight' => 1, 'view_mode' => 'teaser', 'hide_title' => 0));
     $this->drupalPost('admin/structure/quicktabs/manage/'. $quicktabs->machine_name .'/edit', $edit, t('Save'));
     
     // Reset static vars because ctools will have cached the original $quicktabs object
