mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
run black on tests/updates.TestCase to fix lint failure
This commit is contained in:
parent
e799f32d71
commit
99e0c28d37
1 changed files with 11 additions and 13 deletions
|
|
@ -106,8 +106,7 @@ class UpdateTest(unittest.TestCase):
|
|||
'org.videolan.vlc',
|
||||
):
|
||||
shutil.copytree(
|
||||
os.path.join(repo_dir, packageName),
|
||||
os.path.join('repo', packageName)
|
||||
os.path.join(repo_dir, packageName), os.path.join('repo', packageName)
|
||||
)
|
||||
for packageName in (
|
||||
'info.guardianproject.checkey',
|
||||
|
|
@ -118,7 +117,7 @@ class UpdateTest(unittest.TestCase):
|
|||
os.mkdir('metadata')
|
||||
shutil.copytree(
|
||||
os.path.join(self.basedir, 'metadata', packageName),
|
||||
os.path.join('metadata', packageName)
|
||||
os.path.join('metadata', packageName),
|
||||
)
|
||||
for packageName in (
|
||||
'com.nextcloud.client',
|
||||
|
|
@ -255,7 +254,6 @@ class UpdateTest(unittest.TestCase):
|
|||
fdroidserver.update.insert_localized_app_metadata(apps)
|
||||
self.assertEqual('42', apps[app.id]['localized']['en-US']['whatsNew'])
|
||||
|
||||
|
||||
def test_name_title_scraping(self):
|
||||
"""metadata file --> fdroiddata localized files --> fastlane/triple-t in app source --> APK"""
|
||||
config = dict()
|
||||
|
|
@ -360,7 +358,7 @@ class UpdateTest(unittest.TestCase):
|
|||
appid = 'info.guardianproject.checkey'
|
||||
testapps = {appid: copy.copy(apps[appid])}
|
||||
self.assertEqual('Checkey the app!', testapps[appid]['Name'])
|
||||
del (testapps[appid]['Name'])
|
||||
del testapps[appid]['Name']
|
||||
fdroidserver.update.insert_missing_app_names_from_apks(testapps, apks)
|
||||
self.assertIsNone(testapps[appid].get('Name'))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue