From 2d99a25e9c18095118e8be38d6cdf1674bae2078 Mon Sep 17 00:00:00 2001 From: Jared Esparza Date: Wed, 8 Jun 2022 14:25:40 +0200 Subject: [PATCH] Remove CompanyTestMixin --- tests/test_module.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_module.py b/tests/test_module.py index ceaa2a0..56509a7 100644 --- a/tests/test_module.py +++ b/tests/test_module.py @@ -2,11 +2,10 @@ # This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. -from trytond.modules.company.tests import CompanyTestMixin from trytond.tests.test_tryton import ModuleTestCase -class CsvImportTestCase(CompanyTestMixin, ModuleTestCase): +class CsvImportTestCase(ModuleTestCase): 'Test CsvImport module' module = 'csv_import'