We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3415e2 commit 9ebe366Copy full SHA for 9ebe366
1 file changed
tests/test_solid_api.py
@@ -14,13 +14,11 @@ def gen_random_str() -> str:
14
return uuid.uuid4().hex
15
16
17
-POD_ENDPOINT = 'https://dahanhsi.solidcommunity.net/'
18
-# POD_ENDPOINT = 'https://pod.inrupt.com/petertc/'
19
-
+POD_ENDPOINT = os.getenv('POD_ENDPOINT')
20
IDP = os.getenv('IDP')
21
USERNAME = os.getenv('USERNAME')
22
PASSWORD = os.getenv('PASSWORD')
23
-PRIVATE_RES = 'https://dahanhsi.solidcommunity.net/private/test.md.md'
+PRIVATE_RES = f'{POD_ENDPOINT}/private/test.md.md'
24
25
26
def test_private_access():
0 commit comments