Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit ffd14ad

Browse files
committed
fix unit test: @('_')@ mistake
1 parent 1d8b55e commit ffd14ad

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/unit/aws/protocol/test_parser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,8 @@ def test_rpc_v2_cbor_timestamp_parsing():
15371537
timestamp = parsed_request["MetricData"][0]["Timestamp"]
15381538
assert isinstance(timestamp, datetime)
15391539
assert timestamp.microsecond == 135000
1540-
assert timestamp.minute == 38
1540+
assert timestamp.second == 38
1541+
assert timestamp.minute == 22
15411542
assert timestamp.tzinfo == UTC
15421543

15431544

0 commit comments

Comments
 (0)