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-03-30 10:15:48 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2019-04-01 19:35:22 +0300
commitd6b952ad3e2ab3d4e7742f5f767dde30673a2661 (patch)
treeb75b7f1b25218a8cec101d361e2b9b1a05c8e1b5 /spec/workers/group_destroy_worker_spec.rb
parent8813447c6fd6a9c843433cc7dfda6a95fc4c2b58 (diff)
Add frozen_string_literal to spec/workers
Adds `# frozen_string_literal: true` to spec/workers ruby files
Diffstat (limited to 'spec/workers/group_destroy_worker_spec.rb')
-rw-r--r--spec/workers/group_destroy_worker_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/workers/group_destroy_worker_spec.rb b/spec/workers/group_destroy_worker_spec.rb
index a170c84ab12..90a4150a31a 100644
--- a/spec/workers/group_destroy_worker_spec.rb
+++ b/spec/workers/group_destroy_worker_spec.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'spec_helper'
describe GroupDestroyWorker do