From 50346462f0821767e278496f45dfb32cd4d81bad Mon Sep 17 00:00:00 2001 From: Rijnder Wever Date: Wed, 18 Dec 2024 14:51:56 +0100 Subject: [PATCH] misc: clarify comment --- tests/test_mdto_voorbeelden.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mdto_voorbeelden.py b/tests/test_mdto_voorbeelden.py index 5a0ebb4..ec3ec74 100644 --- a/tests/test_mdto_voorbeelden.py +++ b/tests/test_mdto_voorbeelden.py @@ -109,7 +109,7 @@ def test_file_saving(voorbeeld_archiefstuk_xml, tmp_path_factory): # MDTO uses CRLF (DOS) line endings. Convert them to UNIX line endings. with open(voorbeeld_archiefstuk_xml, "rb") as f: - # Example files also contain newlines at the end of files, so add this + # Example files also contain newlines at the end of files, so append an extra \n voorbeeld_archiefstuk_xml_lf_endings = b"\n".join(f.read().splitlines()) + b"\n" # Read contents of saved file