diff --git a/lib/bill_plan_command.rb b/lib/bill_plan_command.rb index 25a06e1bb4a8819d1410fc392b3e1340397981d9..69c2ca915b0c64275ea48f99b6d7a12ad491a9f9 100644 --- a/lib/bill_plan_command.rb +++ b/lib/bill_plan_command.rb @@ -6,7 +6,7 @@ class BillPlanCommand def self.for(customer) return ForUnregistered.new(customer) unless customer.registered? - unless customer.balance > customer.monthly_price + unless customer.balance >= customer.monthly_price return ForLowBalance.new(customer) end