Skip to content

Commit

Permalink
Merge PR OCA#2843 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by thomaspaulb
  • Loading branch information
OCA-git-bot committed Feb 14, 2024
2 parents 72078dc + 3e43012 commit d2c7a82
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions module_auto_update/tests/test_addon_hash.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).

import os
import unittest

from odoo.tests import TransactionCase

from .. import addon_hash
from ..models.module import DEFAULT_EXCLUDE_PATTERNS


class TestAddonHash(unittest.TestCase):
class TestAddonHash(TransactionCase):

def setUp(self):
super(TestAddonHash, self).setUp()
Expand Down Expand Up @@ -64,4 +65,4 @@ def test2(self):
exclude_patterns=['*.pyc', '*.pyo', '*.pot', 'static/*'],
keep_langs=['fr_FR', 'nl'],
)
self.assertEqual(checksum, 'fecb89486c8a29d1f760cbd01c1950f6e8421b14')
self.assertEqual(checksum, '1a98bb88cefd6cde72620ac5f45a9ef41c894291')

0 comments on commit d2c7a82

Please sign in to comment.