Skip to content

Commit

Permalink
Fix failing tests by removing undocumented dependency on xml_form_bui…
Browse files Browse the repository at this point in the history
…lder (#202)

* Fix failing tests by removing undocumented dependency on xml_form_builder.

* Address code review comment.
  • Loading branch information
alxp authored and DiegoPino committed Apr 25, 2018
1 parent 3a8fe1d commit c08e87a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/islandora_basic_collection_ingest_purge.test
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class IslandoraBasicCollectionIngestTestCase extends IslandoraCollectionWebTestC
parent::setUp(array(
'islandora',
'islandora_basic_collection',
'xml_form_builder',
));
}

Expand All @@ -42,10 +41,8 @@ class IslandoraBasicCollectionIngestTestCase extends IslandoraCollectionWebTestC
$this->drupalLogin($user);

// Add a collection.
$label = $this->randomName(16);
$pid = 'islandora:' . $this->randomName();
$this->drupalPost('islandora/object/islandora:root/manage/overview/ingest', array('pid' => $pid), 'Next');
$this->drupalPost(NULL, array('titleInfo[title]' => $label), 'Ingest');
$this->drupalPost('islandora/object/islandora:root/manage/overview/ingest', array('pid' => $pid), 'Ingest');

// Check if we made a collection correctly.
$object = islandora_object_load($pid);
Expand Down

0 comments on commit c08e87a

Please sign in to comment.