From d7b5a374c2e96e52e67c6ca9c0500724016242f1 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Mon, 23 Jul 2018 10:42:15 +0100 Subject: [PATCH] Fix indentation --- app/helpers/transaction_helper.rb | 2 +- spec/helpers/transaction_helper_spec.rb | 34 ++++++++++++------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/app/helpers/transaction_helper.rb b/app/helpers/transaction_helper.rb index f76eb97723b..efb98d6a53e 100644 --- a/app/helpers/transaction_helper.rb +++ b/app/helpers/transaction_helper.rb @@ -32,7 +32,7 @@ module TransactionHelper def self.after_commit(&blk) ActiveRecord::Base.connection.add_transaction_record( - AfterCommitWrapper.new(&blk) + AfterCommitWrapper.new(&blk) ) end end diff --git a/spec/helpers/transaction_helper_spec.rb b/spec/helpers/transaction_helper_spec.rb index d1c4a3e4947..01908b15aaa 100644 --- a/spec/helpers/transaction_helper_spec.rb +++ b/spec/helpers/transaction_helper_spec.rb @@ -5,28 +5,28 @@ describe TransactionHelper do it "runs callbacks after outermost transaction is committed" do outputString = "1" - # Main transaction - ActiveRecord::Base.transaction do - outputString += "2" + # Main transaction + ActiveRecord::Base.transaction do + outputString += "2" - # Nested transaction - ActiveRecord::Base.transaction do - outputString += "3" + # Nested transaction + ActiveRecord::Base.transaction do + outputString += "3" - TransactionHelper.after_commit do - outputString += "6" - end - outputString += "4" - end + TransactionHelper.after_commit do + outputString += "6" + end + outputString += "4" + end - TransactionHelper.after_commit do - outputString += "7" - end + TransactionHelper.after_commit do + outputString += "7" + end - outputString += "5" - end + outputString += "5" + end - expect(outputString).to eq("1234567") + expect(outputString).to eq("1234567") end end