Commit 450e11f40ec7a2eb100a837bc5f1c571ddc16879

Authored by Victor Costa
1 parent c4afac0b

sub_organizations: fix selenium test

plugins/sub_organizations/features/sub_organizations_display.feature
... ... @@ -29,6 +29,7 @@ Feature: sub_organizations_display
29 29 And I follow "Manage sub-groups"
30 30 And I follow "Register a new sub-enterprise"
31 31 And I fill in "Name" with "Bart"
  32 + And I fill in "Address" with "bart"
32 33 And I press "Next"
33 34 Then I should see "Enterprise registration completed"
34 35 And I am logged in as admin
... ...
plugins/sub_organizations/lib/ext/create_enterprise.rb
... ... @@ -2,4 +2,5 @@ require_dependency 'create_enterprise'
2 2  
3 3 class CreateEnterprise
4 4 settings_items :sub_organizations_plugin_parent_to_be
  5 + DATA_FIELDS << 'sub_organizations_plugin_parent_to_be'
5 6 end
... ...