diff --git a/lib/low_balance.rb b/lib/low_balance.rb index dd116ea04022b8e8b16f80d20115db15afb0e268..dbd445437a642666b6fbf267bd12df7fee5cec1c 100644 --- a/lib/low_balance.rb +++ b/lib/low_balance.rb @@ -52,7 +52,7 @@ class LowBalance return unless @transaction_amount&.positive? return unless @transaction_amount > @customer.balance - "You need an additional " \ + "\nYou need an additional " \ "$#{'%.2f' % (@transaction_amount - @customer.balance)} "\ "to complete this transaction." end