mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-09 00:40:29 +03:00
change VercodeOperation to TYPE_LIST
This commit is contained in:
parent
747fa13591
commit
618e2c7d72
11 changed files with 18 additions and 22 deletions
|
|
@ -222,7 +222,7 @@ class LintTest(unittest.TestCase):
|
|||
|
||||
anywarns = False
|
||||
for good in good_fields:
|
||||
app.VercodeOperation = good
|
||||
app.VercodeOperation = [good]
|
||||
for warn in fdroidserver.lint.check_vercode_operation(app):
|
||||
anywarns = True
|
||||
logging.debug(warn)
|
||||
|
|
@ -230,7 +230,7 @@ class LintTest(unittest.TestCase):
|
|||
|
||||
for bad in bad_fields:
|
||||
anywarns = False
|
||||
app.VercodeOperation = bad
|
||||
app.VercodeOperation = [bad]
|
||||
for warn in fdroidserver.lint.check_vercode_operation(app):
|
||||
anywarns = True
|
||||
logging.debug(warn)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue