Skip to content
This repository was archived by the owner on Jul 27, 2025. It is now read-only.

Commit 240c11c

Browse files
committed
Lint fixes
1 parent ed3fe37 commit 240c11c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/models/account.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def create_and_sync(attributes)
6363

6464
transaction do
6565
account.save!
66-
66+
6767
manager = Account::OpeningBalanceManager.new(account)
6868
result = manager.set_opening_balance(balance: initial_balance || account.balance)
6969
raise result.error if result.error

test/support/entries_test_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def create_valuation(attributes = {})
1919
account = attributes[:account] || accounts(:depository)
2020
amount = attributes[:amount] || 5000
2121
cash_balance = account.accountable_type == "Depository" ? amount : 0
22-
22+
2323
entry_defaults = {
2424
account: account,
2525
name: "Valuation",

0 commit comments

Comments
 (0)