Skip to content

Commit

Permalink
Updated CHOICES_DATA in tests to reflect new format
Browse files Browse the repository at this point in the history
  • Loading branch information
tombch committed Apr 23, 2024
1 parent 555f1c8 commit 3c8b7c3
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,24 @@
"status": "success",
"code": 200,
"data": [
"England",
"N. Ireland",
"Scotland",
"Wales",
{
"eng": {
"description": "England",
"is_active": True,
},
"ni": {
"description": "N. Ireland",
"is_active": True,
},
"scot": {
"description": "Scotland",
"is_active": True,
},
"wales": {
"description": "Wales",
"is_active": True,
},
}
],
}
CLIMB_ID = "C-0123456789"
Expand Down

0 comments on commit 3c8b7c3

Please sign in to comment.