[FIX]document_url_google_drive: remove tagget decorator in test

This commit is contained in:
Demchuk Mykola 2023-11-06 22:27:21 +02:00
parent 7b9f0a551a
commit 6976b3e078

View File

@ -2,9 +2,9 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo.tests import common, tagged
from odoo.tests import common
@tagged("tttttt")
class TestDocumentUrl(common.TransactionCase):
@classmethod
def setUpClass(cls):
@ -36,9 +36,7 @@ class TestDocumentUrl(common.TransactionCase):
self.config_settings.set_param("is_active_google_api", True)
self.config_settings.set_param("google_picker_api_key", "test_api_key")
self.config_settings.set_param("google_picker_app_id", "test_app_id")
self.config_settings.set_param(
"google_picker_client_id", "test_client_id"
)
self.config_settings.set_param("google_picker_client_id", "test_client_id")
user = self.users.with_context(no_reset_password=True).create(
{
"name": "Test User",