We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4db343f commit ec82fa2Copy full SHA for ec82fa2
1 file changed
tests/e2e/test_api.py
@@ -210,7 +210,7 @@ def test_integration_with_state_legislative_districts(client):
210
if district.ocd_id:
211
assert isinstance(district.ocd_id, str)
212
if district.proportion:
213
- assert isinstance(district.proportion, float)
+ assert isinstance(district.proportion, (int, float))
214
215
# Check upcoming state legislative districts
216
if fields.state_legislative_districts_next:
@@ -221,7 +221,7 @@ def test_integration_with_state_legislative_districts(client):
221
222
223
224
225
226
227
def test_integration_with_school_districts(client):
0 commit comments