summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/manifest_import
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2019-08-22 22:57:44 +1200
committerThong Kuah <tkuah@gitlab.com>2019-08-23 00:15:24 +1200
commit8c42a0eac09cb349789c963d38ee4e3ff5ecc0a8 (patch)
tree73ebb2763804756b12d8b05b5e28b23be86350c9 /spec/lib/gitlab/manifest_import
parent34bf7df0ffd4c872b631f67fd9337930a9e40683 (diff)
downloadgitlab-ce-8c42a0eac09cb349789c963d38ee4e3ff5ecc0a8.tar.gz
Add frozen_string_literal to lib part 2
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
Diffstat (limited to 'spec/lib/gitlab/manifest_import')
-rw-r--r--spec/lib/gitlab/manifest_import/manifest_spec.rb2
-rw-r--r--spec/lib/gitlab/manifest_import/project_creator_spec.rb2
2 files changed, 4 insertions, 0 deletions
diff --git a/spec/lib/gitlab/manifest_import/manifest_spec.rb b/spec/lib/gitlab/manifest_import/manifest_spec.rb
index ded93e23c08..c1135f710ea 100644
--- a/spec/lib/gitlab/manifest_import/manifest_spec.rb
+++ b/spec/lib/gitlab/manifest_import/manifest_spec.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'spec_helper'
describe Gitlab::ManifestImport::Manifest do
diff --git a/spec/lib/gitlab/manifest_import/project_creator_spec.rb b/spec/lib/gitlab/manifest_import/project_creator_spec.rb
index a7487972f51..a8cfcfb41d3 100644
--- a/spec/lib/gitlab/manifest_import/project_creator_spec.rb
+++ b/spec/lib/gitlab/manifest_import/project_creator_spec.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'spec_helper'
describe Gitlab::ManifestImport::ProjectCreator do