diff --git a/InvenTree/InvenTree/helpers.py b/InvenTree/InvenTree/helpers.py index fe2fbe5046..ddb4e35fee 100644 --- a/InvenTree/InvenTree/helpers.py +++ b/InvenTree/InvenTree/helpers.py @@ -6,7 +6,6 @@ import io import json import os.path from PIL import Image -import requests from wsgiref.util import FileWrapper from django.http import StreamingHttpResponse diff --git a/InvenTree/InvenTree/tests.py b/InvenTree/InvenTree/tests.py index fad8f888a3..ccdf2e2d43 100644 --- a/InvenTree/InvenTree/tests.py +++ b/InvenTree/InvenTree/tests.py @@ -97,7 +97,6 @@ class TestMakeBarcoede(TestCase): class TestDownloadFile(TestCase): - def test_download(self): helpers.DownloadFile("hello world", "out.txt") helpers.DownloadFile(bytes("hello world".encode("utf8")), "out.bin")