test/unit/account_test.rb in xero_gateway-2.0.4 vs test/unit/account_test.rb in xero_gateway-2.0.5

- old
+ new

@@ -20,15 +20,16 @@ private def create_test_account - account = XeroGateway::Account.new + account = XeroGateway::Account.new(:account_id => "57cedda9") account.code = "200" account.name = "Sales" account.type = "REVENUE" account.tax_type = "OUTPUT" account.description = "Income from any normal business activity" + account.enable_payments_to_account = false account end -end \ No newline at end of file +end