diff options
author | Stan Hu <stanhu@gmail.com> | 2015-06-22 22:25:21 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2015-06-22 22:25:21 -0700 |
commit | 3446bea719d3e99fbcf91cab8792297cf286fa9c (patch) | |
tree | c66df6c27dfd8c50b4d1060568647c154904591e | |
parent | 359ed48638a7442f36b271f283d6a7b8d31225c4 (diff) | |
download | gitlab-ce-3446bea719d3e99fbcf91cab8792297cf286fa9c.tar.gz |
Fix Style/CaseIndentation cop violations
-rw-r--r-- | spec/lib/gitlab/satellite/action_spec.rb | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/spec/lib/gitlab/satellite/action_spec.rb b/spec/lib/gitlab/satellite/action_spec.rb index 4e27a9a4088..0a93676edc3 100644 --- a/spec/lib/gitlab/satellite/action_spec.rb +++ b/spec/lib/gitlab/satellite/action_spec.rb @@ -98,16 +98,16 @@ describe 'Gitlab::Satellite::Action' do def flocked?(&block) status = flock LOCK_EX|LOCK_NB case status - when false - return true - when 0 - begin - block ? block.call : false - ensure - flock LOCK_UN - end - else - raise SystemCallError, status + when false + return true + when 0 + begin + block ? block.call : false + ensure + flock LOCK_UN + end + else + raise SystemCallError, status end end end |