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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2019-05-13 17:30:40 +0300
committerFilipa Lacerda <filipa@gitlab.com>2019-05-24 12:04:35 +0300
commit087680d78034243ed1f223d8fdfb3a34c74e5eff (patch)
treee7c7e0c220d00ae83ad2b483cefc9162b8c3d5af /spec/serializers
parent536b022498eed274f4c549bbd1d4d40001619c62 (diff)
Fix deployment entity tests
Fixes style lint errors
Diffstat (limited to 'spec/serializers')
-rw-r--r--spec/serializers/deployment_entity_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/serializers/deployment_entity_spec.rb b/spec/serializers/deployment_entity_spec.rb
index 37614cc0b4c..76ad2aee5c5 100644
--- a/spec/serializers/deployment_entity_spec.rb
+++ b/spec/serializers/deployment_entity_spec.rb
@@ -107,7 +107,7 @@ describe DeploymentEntity do
it 'only exposes deployable name and path' do
project_job_path(project, deployment.deployable).tap do |path|
expect(subject.fetch(:deployable))
- .to eq('name' => 'test', 'build_path' => path)
+ .to eq(name: 'test', build_path: path)
end
end
end