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.
1 parent a674656 commit e6880e1Copy full SHA for e6880e1
1 file changed
tests/test_cached_api.py
@@ -48,15 +48,15 @@ def test_cached_request(self):
48
self.assertEqual(res.content, cached.content)
49
50
def test_request_no_cache(self):
51
- url = "https://neon.ai/Company"
+ url = "https://hana.neonaiservices.com/docs"
52
res = self.api.session.get(url, timeout=10)
53
with self.api.session.cache_disabled():
54
cached = self.api.session.get(url, timeout=10)
55
self.assertFalse(cached.from_cache)
56
57
58
def test_get_with_cache_timeout(self):
59
- url = "https://chatbotsforum.org"
+ url = "https://www.chatbotsforum.org"
60
res = self.api.get_with_cache_timeout(url, 5)
61
self.assertFalse(res.from_cache)
62
cached = self.api.get_with_cache_timeout(url, 15)
0 commit comments