fix: corrects blog_post factory to use Odoo 17 'body' field instead of 'body_arch'

This commit is contained in:
Nicholas Riegel 2026-05-29 23:16:40 -04:00
parent 1d4b8c93a0
commit 4f30756fc5

View file

@ -39,7 +39,7 @@ class BlogPublisherFactory:
'blog_id': blog.id,
'website_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_description': '',
'website_meta_keywords': '',