Index: taxonomy.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.test,v
retrieving revision 1.46
diff -r1.46 taxonomy.test
93a94,103
>     // Try to assign a vocabulary to two content types, then make sure, when editing that vocabulary, that both content type checkboxes are checked.
>     $this->drupalGet('admin/structure/taxonomy');
>     $this->clickLink(t('edit vocabulary'));
>     $edit['nodes[article]'] ='article';
>     $edit['nodes[page]'] ='page';
>     $this->drupalGet('admin/structure/taxonomy');
>     $this->clickLink(t('edit vocabulary'));
>     $this->assertRaw('value="article"  checked="checked"', t('Vocabulary for content type article is checked, as it should be'));
>     $this->assertRaw('value="page"  checked="checked"', t('Vocabulary for content type page is checked, as it should be'));
> 
