Skip to content
代码片段 群组 项目
提交 8a5d5b40 编辑于 作者: Markus Koller's avatar Markus Koller
浏览文件

Merge branch '257438-InvitesController-ruby2.7' into 'master'

Fix Ruby 2.7 deprecation warnings in invites_controller_spec.rb

See merge request gitlab-org/gitlab!43710
No related branches found
No related tags found
无相关合并请求
...@@ -109,8 +109,8 @@ ...@@ -109,8 +109,8 @@
it 'tracks the user as experiment group' do it 'tracks the user as experiment group' do
request request
expect_snowplow_event(snowplow_event.merge(action: 'opened')) expect_snowplow_event(**snowplow_event.merge(action: 'opened'))
expect_snowplow_event(snowplow_event.merge(action: 'accepted')) expect_snowplow_event(**snowplow_event.merge(action: 'accepted'))
end end
end end
...@@ -121,8 +121,8 @@ ...@@ -121,8 +121,8 @@
it 'tracks the user as control group' do it 'tracks the user as control group' do
request request
expect_snowplow_event(snowplow_event.merge(action: 'opened')) expect_snowplow_event(**snowplow_event.merge(action: 'opened'))
expect_snowplow_event(snowplow_event.merge(action: 'accepted')) expect_snowplow_event(**snowplow_event.merge(action: 'accepted'))
end end
end end
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
it 'tracks the user as experiment group' do it 'tracks the user as experiment group' do
request request
expect_snowplow_event(snowplow_event.merge(action: 'accepted')) expect_snowplow_event(**snowplow_event.merge(action: 'accepted'))
end end
end end
...@@ -184,7 +184,7 @@ ...@@ -184,7 +184,7 @@
it 'tracks the user as control group' do it 'tracks the user as control group' do
request request
expect_snowplow_event(snowplow_event.merge(action: 'accepted')) expect_snowplow_event(**snowplow_event.merge(action: 'accepted'))
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册