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 2 .event_lp
3 3 %div
4 4 = image_tag gravatar_icon(event.author_email), class: "avatar"
5   - %span Your pushed to
  5 + %span You pushed to
6 6 = event.ref_type
7 7 = link_to project_commits_path(event.project, ref: event.ref_name) do
8 8 %strong= truncate(event.ref_name, length: 28)
... ...
features/steps/dashboard/dashboard.rb
... ... @@ -16,7 +16,7 @@ class Dashboard < Spinach::FeatureSteps
16 16 end
17 17  
18 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 20 page.should have_link "Create Merge Request"
21 21 end
22 22  
... ...