summaryrefslogtreecommitdiff
path: root/spec/features/project_variables_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/project_variables_spec.rb')
-rw-r--r--spec/features/project_variables_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/project_variables_spec.rb b/spec/features/project_variables_spec.rb
index 6bdf5df1036..c726a20f4aa 100644
--- a/spec/features/project_variables_spec.rb
+++ b/spec/features/project_variables_spec.rb
@@ -1,9 +1,9 @@
-require 'spec_helper'
+require "spec_helper"
-describe 'Project variables', :js do
+describe "Project variables", :js do
let(:user) { create(:user) }
let(:project) { create(:project) }
- let(:variable) { create(:ci_variable, key: 'test_key', value: 'test_value') }
+ let(:variable) { create(:ci_variable, key: "test_key", value: "test_value") }
let(:page_path) { project_settings_ci_cd_path(project) }
before do
@@ -14,5 +14,5 @@ describe 'Project variables', :js do
visit page_path
end
- it_behaves_like 'variable list'
+ it_behaves_like "variable list"
end