Commit aa76fa55 authored by Luke Bennett's avatar Luke Bennett Committed by Valery Sizov

Remove carriage returns from commit description as summary is on a newline and...

Remove carriage returns from commit description as summary is on a newline and will always include carriage returns
parent 8a5d3ce1
......@@ -21,7 +21,7 @@ class Spinach::Features::ProjectCommits < Spinach::FeatureSteps
expect(response_headers['Content-Type']).to have_content("application/atom+xml")
expect(body).to have_selector("title", text: "#{@project.name}:master commits")
expect(body).to have_selector("author email", text: commit.author_email)
expect(body).to have_selector("entry summary", text: commit.description[0..10])
expect(body).to have_selector("entry summary", text: commit.description[0..10].gsub("\r", ""))
end
step 'I click on tag link' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment