Skip to content

Commit

Permalink
[MIG] auth_signup_verify_email: Migration to 16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-zanotti committed Nov 25, 2022
1 parent 9203172 commit fff32e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion auth_signup_verify_email/tests/test_verify_email.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,10 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from lxml.html import document_fromstring
from mock import patch
try:
from unittest.mock import patch
except ImportError:
from mock import patch

from odoo.tests.common import HttpCase
from odoo.tools.misc import mute_logger

0 comments on commit fff32e1

Please sign in to comment.