From 1a54486138f8018141e3b7f80c26ccc39956b0f3 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Tue, 17 Mar 2015 17:12:18 -0400 Subject: [PATCH] Add base_import as admin_technical_features deps With module admin_technical_features installed, base_import unittests fail with in the following test: test_shallow (openerp.addons.base_import.tests.test_cases.test_o2m) Having technical features enabled add the following to the dict in fields: {'fields': [{'fields': [], 'id': 'parent_id', 'name': 'id', 'required': False, 'string': 'External ID'}, {'fields': [], 'id': 'parent_id', 'name': '.id', 'required': False, 'string': 'Database ID'}], 'id': 'parent_id', 'name': 'parent_id', 'required': False, 'string': 'unknown'} --- admin_technical_features/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_technical_features/__openerp__.py b/admin_technical_features/__openerp__.py index cd0b644fa..2b2ce6372 100644 --- a/admin_technical_features/__openerp__.py +++ b/admin_technical_features/__openerp__.py @@ -48,7 +48,7 @@ Module developed and tested with Odoo version 8.0 For questions, please contact our support services \ (support@savoirfairelinux.com) """, - 'depends': [], + 'depends': ['base_import'], 'external_dependencies': { 'python': [], },