We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2873764 commit 8ffbd94Copy full SHA for 8ffbd94
1 file changed
tests/test_codecs/test_scale_offset.py
@@ -453,5 +453,5 @@ def test_compute_encoded_size() -> None:
453
"""compute_encoded_size returns the input byte length unchanged (codec is fixed-size)."""
454
codec = ScaleOffset(offset=0, scale=1)
455
# The chunk_spec argument is unused; pass any sentinel
456
- assert codec.compute_encoded_size(input_byte_length=100, _chunk_spec=None) == 100 # type: ignore[arg-type]
457
- assert codec.compute_encoded_size(input_byte_length=0, _chunk_spec=None) == 0 # type: ignore[arg-type]
+ assert codec.compute_encoded_size(input_byte_length=100, _chunk_spec=None) == 100 # type: ignore[arg-type]
+ assert codec.compute_encoded_size(input_byte_length=0, _chunk_spec=None) == 0 # type: ignore[arg-type]
0 commit comments