Skip to content

Commit fe24fc8

Browse files
OmarAlJarrahclaude
andcommitted
chore(tests): drop stale tracking tags from test annotations
Remove leftover per-test tracking tags from a few test docstrings and comments; they carried no information for readers of the suite. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent e881487 commit fe24fc8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/dexpace-sdk-core/tests/auth/test_challenge_immutability.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2026 dexpace and Omar Aljarrah.
22
# Licensed under the MIT License. See LICENSE.md in the repository root for details.
33

4-
"""Tests for the read-only parameter view on parsed challenges (Nit48).
4+
"""Tests for the read-only parameter view on parsed challenges.
55
66
``AuthenticateChallenge`` is a frozen dataclass; its ``parameters`` mapping
77
produced by ``parse_challenges`` must likewise be immutable so the object is

packages/dexpace-sdk-core/tests/http/test_async_bodies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ async def test_async_request_aiter_bytes_rejects_invalid_chunk_size(
143143
size: int,
144144
) -> None:
145145
# All three AsyncRequestBody backings must reject a non-positive chunk_size
146-
# up front, matching the sync and response-body guard (M9).
146+
# up front, matching the sync and response-body guard.
147147
body = factory()
148148
with pytest.raises(ValueError, match="chunk_size"):
149149
async for _ in body.aiter_bytes(size):

packages/dexpace-sdk-core/tests/http/test_async_cancellation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ async def consume() -> None:
7171

7272

7373
async def test_request_aiter_bytes_releases_stream_and_propagates_when_cancelled() -> None:
74-
# M10: the request-side stream body must shield its close just like the
74+
# The request-side stream body must shield its close just like the
7575
# response side, so a cancel mid-read still releases the upstream stream.
7676
stream = _SlowStream()
7777
body = AsyncRequestBody.from_async_stream(stream)

0 commit comments

Comments
 (0)