Browse Source
[FIX] mass_mailing_partner: Remove dead and wrong code
These lines are useless, and, besides, wrong. Removing them.
pull/362/head
Jairo Llopis
6 years ago
No known key found for this signature in database
GPG Key ID: 59564BF1E22F314F
1 changed files with
0 additions and
2 deletions
-
mass_mailing_partner/tests/base.py
|
|
@ -12,8 +12,6 @@ class BaseCase(TransactionCase): |
|
|
|
super(BaseCase, self).setUp() |
|
|
|
m_partner_category = self.env['res.partner.category'] |
|
|
|
m_mailing_list = self.env['mail.mass_mailing.list'] |
|
|
|
self.company_id = self.env.ref('base.main_company') |
|
|
|
self.company = self.env['res.company'].browse(self.company_id) |
|
|
|
self.partner = self.create_partner({'name': 'Partner test', |
|
|
|
'email': 'partner@test.com'}) |
|
|
|
partner_category = m_partner_category.create({'name': 'Category Test'}) |
|
|
|