1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-21 04:10:37 +02:00

test(deploy): fix typo in rclone test cases

This commit is contained in:
proletarius101 2024-06-05 18:10:55 +08:00
parent 4341343fa4
commit bae8858607
No known key found for this signature in database

View File

@ -136,7 +136,7 @@ class DeployTest(unittest.TestCase):
fdroidserver.common.options = Options
# write out destination path
destination = Path('some_bucket_folder/fdroid')
destination = Path('test_bucket_folder/fdroid')
destination.mkdir(parents=True, exist_ok=True)
dest_apk = Path(destination) / fake_apk
dest_index = Path(destination) / fake_index
@ -180,7 +180,7 @@ class DeployTest(unittest.TestCase):
fdroidserver.common.options = Options
# write out destination path
destination = Path('some_bucket_folder/fdroid')
destination = Path('test_bucket_folder/fdroid')
destination.mkdir(parents=True, exist_ok=True)
dest_apk = Path(destination) / fake_apk
dest_index = Path(destination) / fake_index