Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[15.0][FIX] account_invoice_pricelist: Adapted Tests for changes made in Sale module. #1457

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
from odoo.exceptions import UserError
from odoo.tests import common

from odoo.addons.sale.models.sale import SaleOrderLine as upstream
from odoo.addons.sale.models.sale_order_line import SaleOrderLine as upstream

# if this hash fails then the original function it was copied from
# needs to be checked to see if there are any major changes that
# need to be updated in this module's _get_real_price_currency

VALID_HASHES = ["7c0bb27c20598327008f81aee58cdfb4"]
VALID_HASHES = ["ae1579f90ae87798e0d86f6b7427d4aa"]


class TestAccountMovePricelist(common.SavepointCase):
class TestAccountMovePricelist(common.TransactionCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
Expand Down