Flaky Spec Fix:HTML Escape Special Characters in Assertion like Template (#9708)

This commit is contained in:
Molly Struve 2020-08-10 00:56:00 -05:00 committed by GitHub
parent 9d7a6d6ab1
commit aa6ced033c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,7 +119,7 @@ RSpec.describe "Dashboards", type: :request do
sign_in pro_user
get dashboard_path
expect(response.body).to include("Pro Analytics for #{organization.name}")
expect(response.body).to include("Pro Analytics for #{CGI.escapeHTML(organization.name)}")
end
end