forked from p15670423/monkey
Island: Remove testing TODOs from PBAFile{Download,Upload}
This commit is contained in:
parent
63a2527f3f
commit
22b22c5f0a
|
@ -28,5 +28,3 @@ class PBAFileDownload(AbstractResource):
|
|||
except repository.FileNotFoundError as err:
|
||||
logger.error(str(err))
|
||||
return make_response({"error": str(err)}, 404)
|
||||
|
||||
# TODO: Add unit tests that test 404 vs 500 errors
|
||||
|
|
|
@ -62,8 +62,6 @@ class FileUpload(AbstractResource):
|
|||
logger.error(str(err))
|
||||
return make_response({"error": str(err)}, 404)
|
||||
|
||||
# TODO: Add unit tests that test 404 vs 500 errors
|
||||
|
||||
@jwt_required
|
||||
def post(self, target_os):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue