summaryrefslogtreecommitdiff
path: root/spec/views
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2016-10-24 23:56:09 +0800
committerLin Jen-Shin <godfat@godfat.org>2016-10-24 23:56:09 +0800
commit517effe9f03ccd7b70ce7092b3295c9734060b39 (patch)
tree2746593c794021582e114afb797a4f902a75d4bc /spec/views
parent68f964ad14a007a99df3d8d7f76d125fbe7f67c9 (diff)
parent4028022f56f81f9cbe1227dae53c878f702bd8fa (diff)
downloadgitlab-ce-517effe9f03ccd7b70ce7092b3295c9734060b39.tar.gz
Merge remote-tracking branch 'upstream/master' into show-commit-status-from-source-project
* upstream/master: (368 commits) Use root_url for issue boards user link removes extra line for empty milestone description code formatting corrected Fix reply-by-email not working due to queue name mismatch Remove duplicate code in repository cache clearing Expire and build repository cache after project import refactor(email): use setter method instead AR callbacks Move spec/mailers/shared/notify.rb to spec/support Fix status code expectation Stop clearing the database cache on rake cache:clear Fix error in generating labels Fix bug where e-mails were not being sent out via Sidekiq Document link syntax introduced by !5586 Fix documents and comments on Build API `scope`. #23146 #19131 adds entry in CHANGELOG removes extra line for empty issue description Re-organize queues to use for Sidekiq Fix wrong endpoint in api/users documentation, fix same typo in spec describe blocks Update CHANGELOG Fix object data to be sent to fetch analytics data ...
Diffstat (limited to 'spec/views')
-rw-r--r--spec/views/devise/shared/_signin_box.html.haml_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/views/devise/shared/_signin_box.html.haml_spec.rb b/spec/views/devise/shared/_signin_box.html.haml_spec.rb
index ee362e6fcb3..1397bfa5864 100644
--- a/spec/views/devise/shared/_signin_box.html.haml_spec.rb
+++ b/spec/views/devise/shared/_signin_box.html.haml_spec.rb
@@ -12,13 +12,13 @@ describe 'devise/shared/_signin_box' do
render
- expect(rendered).to have_selector('#tab-crowd form')
+ expect(rendered).to have_selector('#crowd form')
end
it 'is not shown when Crowd is disabled' do
render
- expect(rendered).not_to have_selector('#tab-crowd')
+ expect(rendered).not_to have_selector('#crowd')
end
end