Commit ad3eefdcb8cf08007c45876afea20109b5984876

Authored by Robert Speicher
1 parent 4afb7b7c

Minor grammar change

[ci skip]
app/views/events/_event_last_push.html.haml
@@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
2 .event_lp 2 .event_lp
3 %div 3 %div
4 = image_tag gravatar_icon(event.author_email), class: "avatar" 4 = image_tag gravatar_icon(event.author_email), class: "avatar"
5 - %span Your pushed to 5 + %span You pushed to
6 = event.ref_type 6 = event.ref_type
7 = link_to project_commits_path(event.project, ref: event.ref_name) do 7 = link_to project_commits_path(event.project, ref: event.ref_name) do
8 %strong= truncate(event.ref_name, length: 28) 8 %strong= truncate(event.ref_name, length: 28)
features/steps/dashboard/dashboard.rb
@@ -16,7 +16,7 @@ class Dashboard < Spinach::FeatureSteps @@ -16,7 +16,7 @@ class Dashboard < Spinach::FeatureSteps
16 end 16 end
17 17
18 Then 'I should see last push widget' do 18 Then 'I should see last push widget' do
19 - page.should have_content "Your pushed to branch new_design" 19 + page.should have_content "You pushed to branch new_design"
20 page.should have_link "Create Merge Request" 20 page.should have_link "Create Merge Request"
21 end 21 end
22 22