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>2023-04-28 21:26:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-28 21:26:46 +0300
commit5509e479900ee537980a126287c20327c41a61d6 (patch)
tree8272f06bd58b1518eca38975f95656ffc5497bd2 /spec/config
parente0529f76a36026dc4bd51fbec1e5c52e7f3866e1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/config')
-rw-r--r--spec/config/settings_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/config/settings_spec.rb b/spec/config/settings_spec.rb
index d6cddc215f5..55e675d5107 100644
--- a/spec/config/settings_spec.rb
+++ b/spec/config/settings_spec.rb
@@ -203,8 +203,8 @@ RSpec.describe Settings, feature_category: :system_access do
using RSpec::Parameterized::TableSyntax
where(:input_rules, :result) do
- nil | [['*', nil]]
- [] | [['*', nil]]
+ nil | [['*', 'default']]
+ [] | [['*', 'default']]
[['name=foobar', 'foobar']] | [['name=foobar', 'foobar']]
end