Skip to content

Commit ed168d0

Browse files
committed
feat: names changed
1 parent 261aee3 commit ed168d0

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ def pytest_collection_modifyitems(config, items):
1414
def pytest_configure(config):
1515
config.addinivalue_line(
1616
"markers",
17-
"acceptance: marks tests that hit real OTC API (deselect with '-m \"not acceptance\"')",
17+
"acceptance: marks tests that hit real T Cloud Public API (deselect with '-m \"not acceptance\"')",
1818
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "sdk"
77
version = "0.1.0"
8-
description = "Python SDK for Open Telekom Cloud"
8+
description = "Python SDK for T Cloud Public"
99
readme = "README.md"
1010
license = "Apache-2.0"
1111
requires-python = ">=3.13"

src/sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""OTC SDK — Python SDK for Open Telekom Cloud."""
1+
"""Python SDK for T Cloud Public."""
22

33
from ._version import __version__
44

tests/unit/services/vpc/v1/vpcs/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
@pytest.fixture
1010
def vpc_payload():
11-
"""Minimal valid VPC payload as returned by the OTC API."""
11+
"""Minimal valid VPC payload as returned by the T Cloud Public API."""
1212
return {
1313
"id": "vpc-id-1",
1414
"name": "test-vpc",

tests/unit/services/vpc/v1/vpcs/test_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def test_list_with_positive_limit_forwards_it(mocker, mock_client):
6363

6464
kwargs = paginate.call_args.kwargs
6565
assert kwargs["limit"] == 50
66-
# And it appears in params too — that's correct per the OTC API.
66+
# And it appears in params too — that's correct per the T Cloud Public API.
6767
assert kwargs["params"] == {"limit": "50"}
6868

6969

0 commit comments

Comments
 (0)