Skip to content

Commit

Permalink
Repromon pytest polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
vmdocua committed Oct 8, 2023
1 parent b826302 commit a5fe2e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions repromon_app/tests/router/test_api_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ def test_message_send_message(
"/api/1/message/send_message",
params={
"study": "Test Study Name",
"category": MessageCategoryId.FEEDBACK,
"level": MessageLevelId.INFO,
"category": int(MessageCategoryId.FEEDBACK),
"level": int(MessageLevelId.INFO),
"device": 1,
"provider": DataProviderId.MRI,
"provider": int(DataProviderId.MRI),
"description": "Test message from test_api_v1",
"payload": "{'foobar': 111}"

Expand Down

0 comments on commit a5fe2e4

Please sign in to comment.