Bumped test-coverage to ~87%

This commit is contained in:
Mawoka
2022-04-16 22:36:08 +02:00
parent 24c6b9ca2f
commit 982027eb5a
5 changed files with 53 additions and 2 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ async def import_quiz_route(quiz_id: str, user: User = Depends(get_current_user)
try:
return await import_quiz(quiz_id, user)
except ValidationError:
raise HTTPException(status_code=400, detail="THis quiz in't (yet) supported")
raise HTTPException(status_code=400, detail="This quiz isn't (yet) supported")
@router.delete("/delete/{quiz_id}")