From 32f35314087bbb807b65fe7a89328eaef98e8981 Mon Sep 17 00:00:00 2001 From: Lukas Winkler Date: Sun, 7 May 2017 17:31:30 +0200 Subject: [PATCH] fix test --- tests.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests.py b/tests.py index 10d0f59..3093f7c 100644 --- a/tests.py +++ b/tests.py @@ -48,10 +48,6 @@ def test_if_source_for_images(): for source_file in glob.glob("src/{type}/*.{filetype}".format(type=icontype, filetype=filetype)): if not os.path.islink(source_file): if not os.path.isfile(source_file + ".source") and not "UNK" in source_file: - with open(source_file + ".source", "w") as text_file: - print("Copied over from piwik repository", file=text_file) - with open(source_file + ".todo", "w") as text_file: - print("Replace with better icon", file=text_file) print("Source is missing for {file}".format(file=source_file)) error = True