We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c3cd25 + 37f600f commit 31389d6Copy full SHA for 31389d6
tests/test_cache.py
@@ -23,14 +23,13 @@ def teardown_method(self):
23
@freeze_time("2018-12-26")
24
def test__cache_filename(self):
25
# Arrange
26
- url = "https://endoflife.date/api/python.json"
+ url = "https://peps.python.org/api/peps.json"
27
28
# Act
29
out = _cache.filename(url)
30
31
# Assert
32
- # TODO rename
33
- assert str(out).endswith("2018-12-26-https-endoflife-date-api-python-json.json")
+ assert str(out).endswith("2018-12-26-https-peps-python-org-api-peps-json.json")
34
35
def test__load_cache_not_exist(self):
36
0 commit comments