Skip to content

Commit

Permalink
[FIX] Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
geomer198 committed Nov 9, 2023
1 parent 764b528 commit bc93dd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions delivery_roulier/tests/test_delivery_roulier.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from odoo_test_helper import FakeModelLoader
from roulier import roulier

from odoo.tests.common import TransactionCase, tagged
from odoo.tests.common import TransactionCase

roulier_ret = {
"parcels": [
Expand All @@ -23,7 +23,6 @@
}


@tagged("post_install", "-at_install")
class DeliveryRoulierCase(TransactionCase):
@classmethod
def setUpClass(cls):
Expand Down Expand Up @@ -80,7 +79,6 @@ def setUp(self):
"order_line": [
(0, 0, {"product_id": product.id, "product_uom_qty": 1})
],
"warehouse_id": self.ref("stock.warehouse0"),
}
)
self.env["stock.quant"].with_context(inventory_mode=True).create(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def setUpClass(cls):
"partner_id": cls.partner.id,
"carrier_id": cls.carrier.id,
"pricelist_id": cls.pricelist.id,
"warehouse_id": cls.env.ref("stock.warehouse0").id,
"order_line": [
(
0,
Expand Down

0 comments on commit bc93dd9

Please sign in to comment.