Skip to content

Commit

Permalink
[MIG] hr_expense_invoice/: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
desdelinux committed Jul 16, 2024
1 parent e658292 commit 8abfa25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hr_expense_invoice/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

{
"name": "Supplier invoices on HR expenses",
"version": "16.0.2.0.0",
"version": "17.0.1.0.0",
"category": "Human Resources",
"author": "Tecnativa, Odoo Community Association (OCA)",
"license": "AGPL-3",
Expand Down
2 changes: 1 addition & 1 deletion hr_expense_invoice/tests/test_hr_expense_invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _register_payment(self, sheet):
def _create_attachment(self, res_model, res_id):
return self.env["ir.attachment"].create(
{
"name": "Test attachment %s (%s)" % (res_id, res_model),
"name": f"Test attachment {res_id} ({res_model})",
"res_model": res_model,
"res_id": res_id,
"datas": base64.b64encode(b"\xff data"),
Expand Down

0 comments on commit 8abfa25

Please sign in to comment.