Updating syntax for test cases

This commit is contained in:
DarkFeather 2022-12-15 12:04:23 -06:00
parent 67f7e9c245
commit 2b99d9d32c
Signed by: DarkFeather
GPG Key ID: 1CC1E3F4ED06F296
1 changed files with 1 additions and 1 deletions

View File

@ -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)