summaryrefslogtreecommitdiff
path: root/spec/channels
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-22 09:13:51 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-22 09:13:51 +0000
commit8bf2e2b73e5898c78dd057e02828b6acc1647a70 (patch)
tree803c73a15bf7ae4673310144d47ccb2b5918f9ff /spec/channels
parent589ee0e419426e5b740c61b25a3fcfabd1d4c6a6 (diff)
downloadgitlab-ce-8bf2e2b73e5898c78dd057e02828b6acc1647a70.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/channels')
-rw-r--r--spec/channels/application_cable/connection_spec.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/spec/channels/application_cable/connection_spec.rb b/spec/channels/application_cable/connection_spec.rb
index c10e0c0cab4..affde0095cf 100644
--- a/spec/channels/application_cable/connection_spec.rb
+++ b/spec/channels/application_cable/connection_spec.rb
@@ -3,15 +3,11 @@
require 'spec_helper'
RSpec.describe ApplicationCable::Connection, :clean_gitlab_redis_sessions do
- let(:session_id) { Rack::Session::SessionId.new('6919a6f1bb119dd7396fadc38fd18d0d') }
+ include SessionHelpers
context 'when session cookie is set' do
before do
- Gitlab::Redis::Sessions.with do |redis|
- redis.set("session:gitlab:#{session_id.private_id}", Marshal.dump(session_hash))
- end
-
- cookies[Gitlab::Application.config.session_options[:key]] = session_id.public_id
+ stub_session(session_hash)
end
context 'when user is logged in' do