Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
adjust error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
cainky committed Sep 25, 2023
1 parent 34b08e6 commit 46fa96b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ def index():


if __name__ == "__main__":
app.run(host="0.0.0.0", debug=True)
app.run(host="0.0.0.0")
2 changes: 1 addition & 1 deletion backend/tests/test_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_merge_disallowed_file_extensions(self):
self.assertEqual(response.json["error"], "File type not allowed")

def test_merge_error_during_process(self):
error_msg_prefix = "Error:"
error_msg_prefix = "An internal error has occurred!"

with patch(
"services.merge_service.merge_audio_video",
Expand Down

0 comments on commit 46fa96b

Please sign in to comment.