diff options
author | João Cunha <j.a.cunha@gmail.com> | 2019-03-05 15:14:29 +0000 |
---|---|---|
committer | João Cunha <j.a.cunha@gmail.com> | 2019-03-05 15:14:29 +0000 |
commit | 5e6e1dd54ae80f6725d75da01eb024d40aa47167 (patch) | |
tree | cb57bae9565859d14ee4dd68a5bc7b8f86e7ad5c /spec/features/projects/clusters | |
parent | f933e6125c81877b9118ea753f3218f404bbaff7 (diff) | |
download | gitlab-ce-5e6e1dd54ae80f6725d75da01eb024d40aa47167.tar.gz |
Fix rubocop offenses
Diffstat (limited to 'spec/features/projects/clusters')
-rw-r--r-- | spec/features/projects/clusters/applications_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/projects/clusters/applications_spec.rb b/spec/features/projects/clusters/applications_spec.rb index d97bf246ce3..7eabcda286a 100644 --- a/spec/features/projects/clusters/applications_spec.rb +++ b/spec/features/projects/clusters/applications_spec.rb @@ -243,7 +243,7 @@ describe 'Clusters Applications', :js do retries = 0 while Clusters::Cluster.last.send("application_#{app}").nil? - raise "Timed out waiting for #{ app } application to be created in DB" if (retries += 1) > 3 + raise "Timed out waiting for #{app} application to be created in DB" if (retries += 1) > 3 sleep(1) end @@ -254,7 +254,7 @@ describe 'Clusters Applications', :js do updated_at = app.updated_at while updated_at == app.reload.updated_at - raise "Timed out waiting for #{ app } application to be created in DB" if (retries += 1) > 3 + raise "Timed out waiting for #{app} application to be created in DB" if (retries += 1) > 3 sleep(1) end |