From 128e0f5fde0301dd63d0c4e4a815e183aae02b11 Mon Sep 17 00:00:00 2001 From: Sergio Teruel Date: Wed, 27 Nov 2019 13:51:59 +0100 Subject: [PATCH] IMP] partner_statement: Create test user without password to avoid crash tests with other modules like as password_security --- partner_statement/tests/test_activity_statement.py | 1 - partner_statement/tests/test_outstanding_statement.py | 1 - 2 files changed, 2 deletions(-) diff --git a/partner_statement/tests/test_activity_statement.py b/partner_statement/tests/test_activity_statement.py index 56813906..3088a701 100644 --- a/partner_statement/tests/test_activity_statement.py +++ b/partner_statement/tests/test_activity_statement.py @@ -35,7 +35,6 @@ class TestActivityStatement(TransactionCase): user = self.res_users_model.create({ 'name': login, 'login': login, - 'password': 'demo', 'email': 'example@yourcompany.com', 'company_id': company.id, 'company_ids': [(4, company.id)], diff --git a/partner_statement/tests/test_outstanding_statement.py b/partner_statement/tests/test_outstanding_statement.py index 9d24ba19..60e88e2f 100644 --- a/partner_statement/tests/test_outstanding_statement.py +++ b/partner_statement/tests/test_outstanding_statement.py @@ -32,7 +32,6 @@ class TestOutstandingStatement(TransactionCase): user = self.res_users_model.create({ 'name': login, 'login': login, - 'password': 'demo', 'email': 'example@yourcompany.com', 'company_id': company.id, 'company_ids': [(4, company.id)],