Use switch statements instead of if/else chains.

This commit is contained in:
Connor Shea 2016-07-15 14:08:27 -06:00
parent b2a79554c3
commit 737e5226f8
No known key found for this signature in database
GPG key ID: E52237E5B35A83E6
2 changed files with 10 additions and 8 deletions

View file

@ -55,12 +55,13 @@ class @MergeRequestWidget
$('.mr-state-widget').replaceWith(data)
ciLabelForStatus: (status) ->
if status is 'success'
'passed'
else if status is 'success_with_warnings'
'passed with warnings'
else
status
switch status
when 'success'
'passed'
when 'success_with_warnings'
'passed with warnings'
else
status
pollCIStatus: ->
@fetchBuildStatusInterval = setInterval ( =>

View file

@ -15,9 +15,10 @@ module CiStatusHelper
end
def ci_label_for_status(status)
if status == 'success'
case status
when 'success'
'passed'
elsif status == 'success_with_warnings'
when 'success_with_warnings'
'passed with warnings'
else
status