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:
authorThong Kuah <tkuah@gitlab.com>2019-04-11 15:02:24 +0300
committerThong Kuah <tkuah@gitlab.com>2019-04-12 15:45:38 +0300
commit0be52bf32fa38aca777401bb9e1bec9e011229e6 (patch)
tree11aa3ff865e0eef00cab62635a05bdc535fcb3bf /qa/spec/helpers
parent026c92d5fa82fac87386d5691c3d5b1e02f2eb5e (diff)
Add frozen_string_literal to qa/
This will be default in Ruby 3, so will be good to apply in QA ahead of time to be consistent.
Diffstat (limited to 'qa/spec/helpers')
-rw-r--r--qa/spec/helpers/stub_env.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/qa/spec/helpers/stub_env.rb b/qa/spec/helpers/stub_env.rb
index 62b4a1df787..8ad864dbec8 100644
--- a/qa/spec/helpers/stub_env.rb
+++ b/qa/spec/helpers/stub_env.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
# Inspired by https://github.com/ljkbennett/stub_env/blob/master/lib/stub_env/helpers.rb
module Helpers
module StubENV