kopia lustrzana https://github.com/OpenDroneMap/WebODM
Fix tests
rodzic
4669adf495
commit
def6a59675
|
@ -74,7 +74,7 @@ class TestApiTask(BootTransactionTestCase):
|
||||||
assets_path = os.path.join(settings.MEDIA_TMP, "all.zip")
|
assets_path = os.path.join(settings.MEDIA_TMP, "all.zip")
|
||||||
|
|
||||||
with open(assets_path, 'wb') as f:
|
with open(assets_path, 'wb') as f:
|
||||||
f.write(res.content)
|
f.write(b''.join(res.streaming_content))
|
||||||
|
|
||||||
remove_perm('change_project', user, project)
|
remove_perm('change_project', user, project)
|
||||||
|
|
||||||
|
@ -272,7 +272,7 @@ class TestApiTask(BootTransactionTestCase):
|
||||||
assets_path = os.path.join(settings.MEDIA_TMP, "backup.zip")
|
assets_path = os.path.join(settings.MEDIA_TMP, "backup.zip")
|
||||||
|
|
||||||
with open(assets_path, 'wb') as f:
|
with open(assets_path, 'wb') as f:
|
||||||
f.write(res.content)
|
f.write(b''.join(res.streaming_content))
|
||||||
|
|
||||||
assets_file = open(assets_path, 'rb')
|
assets_file = open(assets_path, 'rb')
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue