diff --git a/tests/build.TestCase b/tests/build.TestCase index f6607634..ef9ecd86 100755 --- a/tests/build.TestCase +++ b/tests/build.TestCase @@ -622,9 +622,9 @@ class BuildTest(unittest.TestCase): with open(metadata_file) as fp: app = fdroidserver.metadata.App(yaml.safe_load(fp)) app['RepoType'] = 'git' - app[ - 'Binaries' - ] = 'https://example.com/fdroid/repo/info.guardianproject.checkey_%v.apk' + app['Binaries'] = ( + 'https://example.com/fdroid/repo/info.guardianproject.checkey_%v.apk' + ) build = fdroidserver.metadata.Build( { 'versionCode': 123, @@ -712,9 +712,9 @@ class BuildTest(unittest.TestCase): with open(metadata_file) as fp: app = fdroidserver.metadata.App(yaml.safe_load(fp)) app['RepoType'] = 'git' - app[ - 'Binaries' - ] = 'https://example.com/fdroid/repo/info.guardianproject.checkey_%v.apk' + app['Binaries'] = ( + 'https://example.com/fdroid/repo/info.guardianproject.checkey_%v.apk' + ) build = fdroidserver.metadata.Build( { 'versionCode': 123,