We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e74869e commit 75cc893Copy full SHA for 75cc893
tests/system/test_seed_random.py
@@ -57,7 +57,11 @@ def test_command_seeds_metrics_dataset_and_data_is_queryable_via_api(self):
57
f"geographies/{quote(sample_row.geography, safe='')}/"
58
"metrics/"
59
)
60
- response = api_client.get(path=path, format="json")
+ response = api_client.get(
61
+ path=path,
62
+ format="json",
63
+ HTTP_ACCEPT="application/json",
64
+ )
65
66
assert response.status_code == HTTP_OK
67
assert "metrics" in response.data
0 commit comments