summaryrefslogtreecommitdiff
path: root/modules/menu/menu.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/menu/menu.test')
-rw-r--r--modules/menu/menu.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/menu/menu.test b/modules/menu/menu.test
index 9eab7ee13..fbd3fe74f 100644
--- a/modules/menu/menu.test
+++ b/modules/menu/menu.test
@@ -181,7 +181,7 @@ class MenuTestCase extends DrupalWebTestCase {
$this->assertFalse(menu_load($menu_name), 'Custom menu was deleted');
// Test if all menu links associated to the menu were removed from database.
$result = db_query("SELECT menu_name FROM {menu_links} WHERE menu_name = :menu_name", array(':menu_name' => $menu_name))->fetchField();
- $this->assertFalse($result, t('All menu links associated to the custom menu were deleted.'));
+ $this->assertFalse($result, t('All menu links associated to the custom menu were deleted.'));
}
/**