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
path: root/qa
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2024-01-04 12:12:51 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-04 12:12:51 +0300
commit8f89276d8498f45459bca67493eccd1bdf055330 (patch)
tree6e5176c92892a84f5d999ec33ba2d0d5482d5eb4 /qa
parentd42495a5f69104d17da0506ac012e25854931129 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/runtime/env.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/runtime/env.rb b/qa/qa/runtime/env.rb
index 99b819017e3..7724d4662b6 100644
--- a/qa/qa/runtime/env.rb
+++ b/qa/qa/runtime/env.rb
@@ -713,7 +713,7 @@ module QA
def enabled?(value, default: true)
return default if value.nil?
- (value =~ /^(false|no|0)$/i) != 0
+ (value.to_s =~ /^(false|no|0)$/i) != 0
end
end
end