Browse Source

Enable allow_auto_create_journal in the automated tests

pull/142/head
Alexis de Lattre 9 years ago
committed by Nicolas JEUDY
parent
commit
f2e7c3fbcb
  1. 2
      account_bank_statement_import_ofx/tests/test_import_bank_statement.py

2
account_bank_statement_import_ofx/tests/test_import_bank_statement.py

@ -25,7 +25,7 @@ class TestOfxFile(TransactionCase):
bank_statement_id = self.statement_import_model.create(cr, uid, dict(
data_file=ofx_file,
))
self.statement_import_model.import_file(cr, uid, [bank_statement_id])
self.statement_import_model.import_file(cr, uid, [bank_statement_id], {'allow_auto_create_journal': True})
statement_id = self.bank_statement_model.search(cr, uid, [('name', '=', '000000123')])[0]
bank_st_record = self.bank_statement_model.browse(cr, uid, statement_id)
self.assertEquals(bank_st_record.balance_start, 2516.56)

Loading…
Cancel
Save