fixed test for matches
This commit is contained in:
@@ -16,7 +16,7 @@ def get_tournament_matches(id: str, db: Session = Depends(get_db)):
|
|||||||
|
|
||||||
@router.get("/{id}/matches/{match_id}", response_model=schemas.MatchOut)
|
@router.get("/{id}/matches/{match_id}", response_model=schemas.MatchOut)
|
||||||
def get_match_details(id: str, match_id: str, db: Session = Depends(get_db)):
|
def get_match_details(id: str, match_id: str, db: Session = Depends(get_db)):
|
||||||
match = crud.get_match(db, id, match_id)
|
match = crud.get_match(db, match_id)
|
||||||
|
|
||||||
if not match:
|
if not match:
|
||||||
raise HTTPException(404, "Match not found")
|
raise HTTPException(404, "Match not found")
|
||||||
|
|||||||
Reference in New Issue
Block a user