Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
yostashiro committed Dec 31, 2024
1 parent 5717628 commit eff818b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions account_tax_round_down/tests/test_account_tax_round_down.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2022-2024 Quartile
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import Command
from odoo import Command, fields
from odoo.tests.common import TransactionCase


Expand Down Expand Up @@ -68,7 +68,7 @@ def _create_invoice(self):
.create(
{
"move_type": "out_invoice",
"invoice_date": "2024-12-31",
"invoice_date": fields.Date.today(),
"partner_id": self.partner.id,
"currency_id": self.env.ref("base.JPY").id,
"invoice_line_ids": [
Expand Down

0 comments on commit eff818b

Please sign in to comment.