diff options
author | Sean McGivern <sean@gitlab.com> | 2016-08-18 17:01:50 +0100 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2016-08-18 21:09:17 +0100 |
commit | 396f85e438ddc9bcd89f5a557980ce82b71e098b (patch) | |
tree | 107f557ebf32d9cb76111edb36c656c54d80f5cc /spec/features | |
parent | 8b1656282bcc39a0c1c7a3dccf74c98b1c3adae2 (diff) | |
download | gitlab-ce-396f85e438ddc9bcd89f5a557980ce82b71e098b.tar.gz |
Add expiration date to group memberships
Diffstat (limited to 'spec/features')
-rw-r--r-- | spec/features/projects/members/master_adds_member_with_expiration_date_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/projects/members/master_adds_member_with_expiration_date_spec.rb b/spec/features/projects/members/master_adds_member_with_expiration_date_spec.rb index 5dd38de34d2..430c384ac2e 100644 --- a/spec/features/projects/members/master_adds_member_with_expiration_date_spec.rb +++ b/spec/features/projects/members/master_adds_member_with_expiration_date_spec.rb @@ -19,7 +19,7 @@ feature 'Projects > Members > Master adds member with expiration date', feature: page.within '.users-project-form' do select2(new_member.id, from: '#user_ids', multiple: true) - fill_in 'Access expiration date', with: '2016-08-10' + fill_in 'expires_at', with: '2016-08-10' click_on 'Add users to project' end |