Skip to content

Commit

Permalink
fix execution test
Browse files Browse the repository at this point in the history
  • Loading branch information
dxstiny committed Oct 31, 2023
1 parent a72c968 commit efb9139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/test.main.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ def _second() -> None:
logger.info("==================== Create Playlist ====================")
logger.info("==========================================================")

id_= -1
id_= ""

# create Playlist
with requests.get("http://localhost:1234/api/playlists/new", timeout = 10) as res:
logger.info(res.status_code)
id_ = int(res.text)
id_ = res.text

logger.info(id_)

Expand Down

0 comments on commit efb9139

Please sign in to comment.