From efca594b745ff7cc931441761c5118506c6d94c3 Mon Sep 17 00:00:00 2001 From: Sylvain Van Hoof Date: Thu, 5 Feb 2015 10:37:12 +0100 Subject: [PATCH] [FIX] partner_firstname : Remove the value checks in tests. With Odoo v8, the value checks in tests raise a Warning "2015-02-05 08:59:44,867 4590 WARNING 00846-develop-v8-9743ea-all openerp.modules.module: Found deprecated fast_suite or checks attribute in test module openerp.addons.partner_firstname.tests. These have no effect in or after version 8.0." With Runbot, we cannot have any Warning. --- partner_firstname/tests/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/partner_firstname/tests/__init__.py b/partner_firstname/tests/__init__.py index 5c1049505..71518a9dc 100644 --- a/partner_firstname/tests/__init__.py +++ b/partner_firstname/tests/__init__.py @@ -29,7 +29,3 @@ ############################################################################## from . import test_partner_firstname - -checks = [ - test_partner_firstname -]