[FIX] account_test: add missing _

The translation function `_` was missing while it was present in the content (e.g. account_test_01)

Closes #10403
This commit is contained in:
Julien Laloux 2016-12-13 16:15:20 +01:00 committed by Martin Trigaux
parent c349e9a8f8
commit d543bb3106
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ class report_assert_account(report_sxw.rml_parse):
'reconciled_inv': reconciled_inv, #specific function used in different tests
'result': None, #used to store the result of the test
'column_order': None, #used to choose the display order of columns (in case you are returning a list of dict)
'_': _, #used for translation
}
eval(code_exec, localdict, mode="exec", nocopy=True)
result = localdict['result']