@@ -387,7 +387,7 @@ function createForum($type, $parent = 0) {
);
// Verify forum.
$term=db_query("SELECT * FROM {taxonomy_term_data} t WHERE t.vid = :vid AND t.name = :name AND t.description = :desc",array(':vid'=>\Drupal::config('forum.settings')->get('vocabulary'),':name'=>$name,':desc'=>$description))->fetchAssoc();
$term=db_query("SELECT * FROM {taxonomy_term_data} t WHERE t.vid = :vid AND t.name = :name AND t.description__value = :desc",array(':vid'=>\Drupal::config('forum.settings')->get('vocabulary'),':name'=>$name,':desc'=>$description))->fetchAssoc();
$this->assertTrue(!empty($term),'The '.$type.' exists in the database');