diff --git a/odfdo/templates/drawing.otg b/odfdo/templates/drawing.otg index c9a5ce2..c1c5775 100644 Binary files a/odfdo/templates/drawing.otg and b/odfdo/templates/drawing.otg differ diff --git a/odfdo/templates/lpod_styles.odt b/odfdo/templates/lpod_styles.odt index cc1d596..7a95492 100644 Binary files a/odfdo/templates/lpod_styles.odt and b/odfdo/templates/lpod_styles.odt differ diff --git a/odfdo/templates/presentation.otp b/odfdo/templates/presentation.otp index 14aa95d..41d208a 100644 Binary files a/odfdo/templates/presentation.otp and b/odfdo/templates/presentation.otp differ diff --git a/odfdo/templates/spreadsheet.ots b/odfdo/templates/spreadsheet.ots index 212b42b..2c2de55 100644 Binary files a/odfdo/templates/spreadsheet.ots and b/odfdo/templates/spreadsheet.ots differ diff --git a/odfdo/templates/text.ott b/odfdo/templates/text.ott index 5f3e3b9..7f1a9c2 100644 Binary files a/odfdo/templates/text.ott and b/odfdo/templates/text.ott differ diff --git a/tests/test_document.py b/tests/test_document.py index 0d0e5a1..236423f 100755 --- a/tests/test_document.py +++ b/tests/test_document.py @@ -223,19 +223,19 @@ def test_case_save_generator(): def test_get_styles(tmp_path): document = Document(_copied_template(tmp_path, "lpod_styles.odt")) styles = document.get_styles() - assert len(styles) == 75 + assert len(styles) == 83 def test_get_styles_family_paragraph(tmp_path): document = Document(_copied_template(tmp_path, "lpod_styles.odt")) styles = document.get_styles(family="paragraph") - assert len(styles) == 33 + assert len(styles) == 40 def test_get_styles_family_paragraph_bytes(tmp_path): document = Document(_copied_template(tmp_path, "lpod_styles.odt")) styles = document.get_styles(family=b"paragraph") - assert len(styles) == 33 + assert len(styles) == 40 def test_get_styles_family_text(tmp_path):