We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bfc290 commit f620eadCopy full SHA for f620ead
tests/test_main.py
@@ -20,15 +20,15 @@
20
21
)
22
23
-# Mock API response
+# Mock GitHub API response
24
api_response = {
25
"download_links": [
26
"https://example.com/organisation_history_api_response.json"
27
]
28
# There are other fields in the API response, but we don't need them for this test
29
}
30
31
-# Mock usage data returned from GitHub API
+# Mock usage data fetched from download_links key in the API response
32
fetched_usage_data = {"day_totals": [
33
{"day": "2024-01-01", "usage": 10},
34
{"day": "2024-01-02", "usage": 20},
0 commit comments