summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2018-07-23 20:57:31 +0200
committerTim Zallmann <tzallmann@gitlab.com>2018-07-23 20:57:31 +0200
commit5f47a42c01d9b89049af1ef3cc123548cca2a279 (patch)
tree7d65ccfbc3010958eefcf8008984146c1254cf48
parent8db71d09506105646870be72c4739d70a8580d2c (diff)
downloadgitlab-ce-49107-prefetching-of-assets-and-cdn-domain.tar.gz
Fixed https <-> http mistake in rspec test49107-prefetching-of-assets-and-cdn-domain
-rw-r--r--spec/views/layouts/_head.html.haml_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/views/layouts/_head.html.haml_spec.rb b/spec/views/layouts/_head.html.haml_spec.rb
index 73689f641b6..09da6952206 100644
--- a/spec/views/layouts/_head.html.haml_spec.rb
+++ b/spec/views/layouts/_head.html.haml_spec.rb
@@ -43,7 +43,7 @@ describe 'layouts/_head' do
it 'add a link preconnect tag' do
render
- expect(rendered).to match('<link crossorigin="" href="https://assets" rel="preconnnect">')
+ expect(rendered).to match('<link crossorigin="" href="http://assets" rel="preconnnect">')
end
end