fix: corrects blog_post factory to use Odoo 17 'body' field instead of 'body_arch'
This commit is contained in:
parent
1d4b8c93a0
commit
4f30756fc5
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ class BlogPublisherFactory:
|
||||||
'blog_id': blog.id,
|
'blog_id': blog.id,
|
||||||
'website_published': False,
|
'website_published': False,
|
||||||
'is_published': False,
|
'is_published': False,
|
||||||
'body_arch': '<p>Test body content for blog post.</p>',
|
'body': '<p>Test body content for blog post.</p>',
|
||||||
'website_meta_title': '',
|
'website_meta_title': '',
|
||||||
'website_meta_description': '',
|
'website_meta_description': '',
|
||||||
'website_meta_keywords': '',
|
'website_meta_keywords': '',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue