Skip to content

Commit 980b494

Browse files
committed
Oh my, py
1 parent 8793f7e commit 980b494

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_round.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def test_round_p3109() -> None:
135135
),
136136
),
137137
)
138-
def test_round_p3109b(mode, vals) -> None:
138+
def test_round_p3109b(mode: RoundMode, vals: list) -> None:
139139
fi = format_info_p3109(4)
140140

141141
for sat in (True, False):
@@ -286,7 +286,7 @@ def test_round_p3109b(mode, vals) -> None:
286286
f"{str(x[0])}-{'Sat' if x[1] else 'Inf'}" if len(x) == 2 else f"{len(x)}"
287287
),
288288
)
289-
def test_round_p3109_sat(modesat, vals) -> None:
289+
def test_round_p3109_sat(modesat: tuple[RoundMode, bool], vals: list) -> None:
290290
fi = format_info_p3109(4)
291291

292292
for val, expected in vals:

0 commit comments

Comments
 (0)