Skip to content

Commit

Permalink
Fix failing user lookup feature test
Browse files Browse the repository at this point in the history
  • Loading branch information
rspeicher committed Apr 19, 2016
1 parent 5ac95d0 commit cabba95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/steps/project/commits/user_lookup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Spinach::Features::ProjectCommitsUserLookup < Spinach::FeatureSteps
def check_author_link(email, user)
author_link = find('.commit-author-link')
expect(author_link['href']).to eq user_path(user)
expect(author_link['data-original-title']).to eq email
expect(author_link['title']).to eq email
expect(find('.commit-author-name').text).to eq user.name
end

Expand Down

0 comments on commit cabba95

Please sign in to comment.