From 2b99d9d32ce972dcc8bc35a37ed70217697361d0 Mon Sep 17 00:00:00 2001 From: DarkFeather Date: Thu, 15 Dec 2022 12:04:23 -0600 Subject: [PATCH] Updating syntax for test cases --- tests/test_doc_coverage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_doc_coverage.py b/tests/test_doc_coverage.py index 6fba874..3322db6 100644 --- a/tests/test_doc_coverage.py +++ b/tests/test_doc_coverage.py @@ -13,7 +13,7 @@ def test_ensure_all_repos_represented(): techtable = techtable_file.read() for repo in repos: try: - testresult == testresult and (techtable.index(repo) != -1) + testresult = (testresult and (techtable.index(repo) != -1)) except ValueError as e: print(repo) print(e)