mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Convert to string
This commit is contained in:
parent
5dee23f7a6
commit
365834d3ea
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ class ScannerTest(unittest.TestCase):
|
|||
'Zillode': 1,
|
||||
'firebase-suspect': 1
|
||||
}
|
||||
for d in source_files.iterdir():
|
||||
for d in (str(p) for p in source_files.iterdir()):
|
||||
fatal_problems = scanner.scan_source(d, Build())
|
||||
self.assertEqual(projects.get(basename(d), 0), fatal_problems)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue