diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-11-06 14:32:19 -0600 |
---|---|---|
committer | Thong Kuah <tkuah@gitlab.com> | 2018-11-08 23:28:30 +1300 |
commit | 603c748ca377c9cdeeae5367ddb2df8b49697835 (patch) | |
tree | c98818cb9a1f582d8e1e7979e0d78173e8ef2cf8 | |
parent | 19a99d086b2ef5f1aed43d073dffb912b248273c (diff) | |
download | gitlab-ce-603c748ca377c9cdeeae5367ddb2df8b49697835.tar.gz |
Remove trailing commas to satisfy rubocop
-rw-r--r-- | spec/controllers/groups/clusters_controller_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/controllers/groups/clusters_controller_spec.rb b/spec/controllers/groups/clusters_controller_spec.rb index 6be1d300aa4..6e130f830a2 100644 --- a/spec/controllers/groups/clusters_controller_spec.rb +++ b/spec/controllers/groups/clusters_controller_spec.rb @@ -280,7 +280,7 @@ describe Groups::ClustersController do name: 'new-cluster', platform_kubernetes_attributes: { api_url: 'http://my-url', - token: 'test', + token: 'test' } } } @@ -430,7 +430,7 @@ describe Groups::ClustersController do { cluster: { enabled: false, - name: 'my-new-cluster-name', + name: 'my-new-cluster-name' } } end @@ -452,7 +452,7 @@ describe Groups::ClustersController do { cluster: { enabled: false, - name: 'my-new-cluster-name', + name: 'my-new-cluster-name' } } end |