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 3d38733 commit e25463cCopy full SHA for e25463c
test/test_cert_pinning.py
@@ -18,11 +18,6 @@ def test_prod_api(self):
18
district = clever.District.all()[0]
19
self.assertEqual(district.name, 'Demo District')
20
21
- def test_staging_api(self):
22
- clever.api_base = 'https://api-staging.ops.clever.com'
23
- district = clever.District.all()[0]
24
- self.assertEqual(district.name, 'Demo District')
25
-
26
def test_cert_failure(self):
27
clever.api_base = 'https://httpbin.org'
28
self.assertRaises(clever.APIConnectionError, clever.District.all)
0 commit comments