Skip to content

Commit e77340e

Browse files
committed
Align with Web Editor terminology
1 parent 4b87748 commit e77340e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

openeo/rest/connection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ def list_auth_providers(self) -> list[dict]:
236236
"id": uuid.uuid4().hex,
237237
"issuer": self.build_url(basic_path),
238238
"type": "basic",
239-
"title": "Basic",
240-
"description": "HTTP Basic authentication using username and password",
239+
"title": "Internal",
240+
"description": "The HTTP Basic authentication method is mostly used for development and testing purposes.",
241241
}
242242
)
243243

tests/rest/test_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ def test_list_auth_providers(requests_mock, api_version):
809809
assert isinstance(basic["id"], str)
810810
assert len(basic["id"]) > 0
811811
assert basic["issuer"] == API_URL + "credentials/basic"
812-
assert basic["title"] == "Basic"
812+
assert basic["title"] == "Internal"
813813

814814

815815
def test_list_auth_providers_empty(requests_mock, api_version):

0 commit comments

Comments
 (0)