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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-29 15:09:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-29 15:09:58 +0300
commitc6c658b674a37d73ba2f7d8e5808fe4d67d09919 (patch)
tree0ae67c5edafdb76680d04c1483f3d205c3763014 /spec/experiments
parent6d89885501262fc2c4293f70b11c3a134f7cc37c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/experiments')
-rw-r--r--spec/experiments/application_experiment_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/experiments/application_experiment_spec.rb b/spec/experiments/application_experiment_spec.rb
index 20050fae1cb..b144e6f77d2 100644
--- a/spec/experiments/application_experiment_spec.rb
+++ b/spec/experiments/application_experiment_spec.rb
@@ -129,7 +129,7 @@ RSpec.describe ApplicationExperiment, :experiment do
expect_snowplow_event(
category: 'namespaced/stub',
- action: 'action',
+ action: :action,
property: '_property_',
context: [
{
@@ -162,7 +162,7 @@ RSpec.describe ApplicationExperiment, :experiment do
expect_snowplow_event(
category: 'namespaced/stub',
- action: 'action',
+ action: :action,
user: user,
project: project,
namespace: namespace,
@@ -177,7 +177,7 @@ RSpec.describe ApplicationExperiment, :experiment do
expect_snowplow_event(
category: 'namespaced/stub',
- action: 'action',
+ action: :action,
user: user,
project: project,
namespace: group,
@@ -193,7 +193,7 @@ RSpec.describe ApplicationExperiment, :experiment do
expect_snowplow_event(
category: 'namespaced/stub',
- action: 'action',
+ action: :action,
user: actor,
project: project,
namespace: namespace,
@@ -208,7 +208,7 @@ RSpec.describe ApplicationExperiment, :experiment do
expect_snowplow_event(
category: 'namespaced/stub',
- action: 'action',
+ action: :action,
project: project,
namespace: namespace,
context: an_instance_of(Array)
@@ -297,7 +297,7 @@ RSpec.describe ApplicationExperiment, :experiment do
expect(Gitlab::Tracking).to have_received(:event).with( # rubocop:disable RSpec/ExpectGitlabTracking
'top',
- 'nested',
+ :nested,
hash_including(label: 'nested')
)
end