From 3e2b8aecb00c4c6ed183b6efb3411d62cd18846f Mon Sep 17 00:00:00 2001 From: Marnanel Thurman Date: Thu, 11 Dec 2025 15:30:35 +0000 Subject: [PATCH] test cases all return None Returning non-None values was deprecated by https://github.com/pytest-dev/pytest/issues/7337 and caused DeprecationWarning. --- test_scour.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test_scour.py b/test_scour.py index 549333f..76f1983 100755 --- a/test_scour.py +++ b/test_scour.py @@ -606,7 +606,6 @@ def runTest(self): break self.assertEqual(True, FoundNamespace, "Did not find Inkscape namespace declaration when using --keep-editor-data") - return False class KeepSodipodiNamespaceDeclarationsWhenKeepEditorData(unittest.TestCase): @@ -622,7 +621,6 @@ def runTest(self): break self.assertEqual(True, FoundNamespace, "Did not find Sodipodi namespace declaration when using --keep-editor-data") - return False class KeepReferencedFonts(unittest.TestCase):