pull/1527/head
Piero Toffanin 2024-07-18 15:38:55 -04:00
rodzic 4669adf495
commit def6a59675
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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')