From 9e8e016076f5e208761fa6423e34c423c81461e4 Mon Sep 17 00:00:00 2001 From: Stephan Meijer Date: Tue, 9 May 2023 10:06:36 +0000 Subject: [PATCH] Rename test/docx/block_quotes_parse_indent.native for consistency --- test/Tests/Readers/Docx.hs | 2 +- test/Tests/Writers/Docx.hs | 2 +- .../{block_quotes_parse_indent.native => block_quotes.native} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename test/docx/{block_quotes_parse_indent.native => block_quotes.native} (100%) diff --git a/test/Tests/Readers/Docx.hs b/test/Tests/Readers/Docx.hs index 607e72f1b..d9935967f 100644 --- a/test/Tests/Readers/Docx.hs +++ b/test/Tests/Readers/Docx.hs @@ -316,7 +316,7 @@ tests = [ testGroup "document" , testCompare "blockquotes (parsing indent as blockquote)" "docx/block_quotes.docx" - "docx/block_quotes_parse_indent.native" + "docx/block_quotes.native" , testCompare "blockquotes (parsing indent relative to the indent of the parent style as blockquote)" "docx/relative_indentation_blockquotes.docx" diff --git a/test/Tests/Writers/Docx.hs b/test/Tests/Writers/Docx.hs index e30a0a76e..e19a9465e 100644 --- a/test/Tests/Writers/Docx.hs +++ b/test/Tests/Writers/Docx.hs @@ -110,7 +110,7 @@ tests = [ testGroup "inlines" , docxTest "blockquotes" def - "docx/block_quotes_parse_indent.native" + "docx/block_quotes.native" "docx/golden/block_quotes.docx" , docxTest "tables" diff --git a/test/docx/block_quotes_parse_indent.native b/test/docx/block_quotes.native similarity index 100% rename from test/docx/block_quotes_parse_indent.native rename to test/docx/block_quotes.native