Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2017-09-01 14:49:22 +0300
committerDouwe Maan <douwe@gitlab.com>2017-09-01 14:49:22 +0300
commit7d3e888d069c3035b25f0dc8ff5efc8e52063db9 (patch)
tree7fa412989e927b6f66b4b2b23f59caeb70310bb8 /spec/features/profiles
parent538852fe5f15a779708ef51ca9e647100d41bdf1 (diff)
parent37383d9a9d9706008a7fa1d90079cb019681094b (diff)
Merge branch '37202-revert-changes-to-signing-enabled' into 'master'
Rollback changes made to signing_enabled. Closes #37202 See merge request !13956
Diffstat (limited to 'spec/features/profiles')
-rw-r--r--spec/features/profiles/password_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/profiles/password_spec.rb b/spec/features/profiles/password_spec.rb
index 2c757f99a27..225d4c16841 100644
--- a/spec/features/profiles/password_spec.rb
+++ b/spec/features/profiles/password_spec.rb
@@ -53,12 +53,12 @@ describe 'Profile > Password' do
context 'Regular user' do
let(:user) { create(:user) }
- it 'renders 404 when sign-in is disabled' do
+ it 'renders 200 when sign-in is disabled' do
stub_application_setting(password_authentication_enabled: false)
visit edit_profile_password_path
- expect(page).to have_http_status(404)
+ expect(page).to have_http_status(200)
end
end