Skip to content

Commit

Permalink
[client] Fix tests after implementing trimming
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelHassine committed Jul 18, 2023
1 parent abae44a commit 4d5c61a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/cases/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ def data(self) -> Dict:
return {
"type": LocationTypes.CITY.value,
"name": "Mars",
"description": "A city ",
"description": "A city",
"latitude": 48.8566,
"longitude": 2.3522,
# "country": "KR",
Expand All @@ -465,7 +465,7 @@ def data(self) -> Dict:
return {
"type": LocationTypes.COUNTRY.value,
"name": "Mars",
"description": "A country ",
"description": "A country",
"latitude": 48.8566,
"longitude": 2.3522,
"region": "northern-america",
Expand All @@ -478,7 +478,7 @@ def data(self) -> Dict:
return {
"type": LocationTypes.REGION.value,
"name": "Mars",
"description": "A Region ",
"description": "A Region",
"latitude": 48.8566,
"longitude": 2.3522,
}
Expand Down Expand Up @@ -783,7 +783,7 @@ def setup(self):
**{
"type": LocationTypes.COUNTRY.value,
"name": "Mars",
"description": "A city ",
"description": "A city",
"latitude": 48.8566,
"longitude": 2.3522,
"region": "northern-america",
Expand Down

0 comments on commit 4d5c61a

Please sign in to comment.