Skip to content

Commit 8902464

Browse files
committed
test: Drop redundant 'Regression test:' prefix from record upload test docstrings
1 parent 6010aa2 commit 8902464

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/unit/test_key_value_store.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def decode_body(request: Request) -> bytes:
4444
def test_set_record_reads_file_like_value_sync(
4545
httpserver: HTTPServer, compression_case: tuple[HttpCompressionAlgorithm, str]
4646
) -> None:
47-
"""Regression test: a file-like value is read and its bytes are uploaded, not passed through unread."""
47+
"""A file-like value is read and its bytes are uploaded, not passed through unread."""
4848
algorithm, content_encoding = compression_case
4949
captured_requests: list[Request] = []
5050

@@ -68,7 +68,7 @@ def capture_request(request: Request) -> Response:
6868
async def test_set_record_reads_file_like_value_async(
6969
httpserver: HTTPServer, compression_case: tuple[HttpCompressionAlgorithm, str]
7070
) -> None:
71-
"""Regression test: a file-like value is read and its bytes are uploaded, not passed through unread."""
71+
"""A file-like value is read and its bytes are uploaded, not passed through unread."""
7272
algorithm, content_encoding = compression_case
7373
captured_requests: list[Request] = []
7474

@@ -92,7 +92,7 @@ def capture_request(request: Request) -> Response:
9292
def test_set_record_reads_stringio_value_sync(
9393
httpserver: HTTPServer, compression_case: tuple[HttpCompressionAlgorithm, str]
9494
) -> None:
95-
"""Regression test: a text file-like value is read and uploaded as text/plain through the HTTP stack."""
95+
"""A text file-like value is read and uploaded as text/plain through the HTTP stack."""
9696
algorithm, content_encoding = compression_case
9797
captured_requests: list[Request] = []
9898

0 commit comments

Comments
 (0)