summaryrefslogtreecommitdiff
path: root/spec/features
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-03-14 12:06:28 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-03-14 12:06:28 +0000
commit1b48285801735c95083d265d18ae5bd3555809ca (patch)
treef534dbf5716c8518bee4636bb8c46c191f1cfa3d /spec/features
parent9673458edc607b75662a2e53b14de5fe40012fdd (diff)
parenta4a893eaa80665076a26a22903bbae1652c62edf (diff)
downloadgitlab-ce-1b48285801735c95083d265d18ae5bd3555809ca.tar.gz
Merge branch 'mr-widget-deployment-styling' into 'master'
Fix styling of multiple environments in merge request widget Closes #40610 See merge request gitlab-org/gitlab-ce!17663
Diffstat (limited to 'spec/features')
-rw-r--r--spec/features/merge_request/user_sees_deployment_widget_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/merge_request/user_sees_deployment_widget_spec.rb b/spec/features/merge_request/user_sees_deployment_widget_spec.rb
index 3abe363d523..f744d7941f5 100644
--- a/spec/features/merge_request/user_sees_deployment_widget_spec.rb
+++ b/spec/features/merge_request/user_sees_deployment_widget_spec.rb
@@ -22,7 +22,7 @@ describe 'Merge request > User sees deployment widget', :js do
wait_for_requests
expect(page).to have_content("Deployed to #{environment.name}")
- expect(find('.js-deploy-time')['data-title']).to eq(deployment.created_at.to_time.in_time_zone.to_s(:medium))
+ expect(find('.js-deploy-time')['data-original-title']).to eq(deployment.created_at.to_time.in_time_zone.to_s(:medium))
end
context 'with stop action' do