Fix unlogical test

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets
2015-07-14 16:52:24 +02:00
parent 80a2a9e4be
commit b80cfd3011
+1 -1
View File
@@ -200,7 +200,7 @@ class Spinach::Features::ProjectServices < Spinach::FeatureSteps
step 'I should see jira service settings saved' do
expect(find_field('Project url').value).to eq 'http://jira.example'
expect(find_field('Username').value).to eq 'gitlab'
expect(find_field('Password').value).not_to eq 'gitlab'
expect(find_field('Password').value).to eq 'gitlab'
expect(find_field('Api version').value).to eq '2'
end