Skip to content

Commit 45615f6

Browse files
authored
fix assertGreater (#315)
1 parent eff5665 commit 45615f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

irctest/cases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def assertGreater(
286286
) -> None:
287287
if fail_msg:
288288
msg = fail_msg.format(*extra_format, got=got, expects=expects, msg=msg)
289-
assert got >= expects, msg # type: ignore
289+
assert got > expects, msg # type: ignore
290290

291291
def assertGreaterEqual(
292292
self,

0 commit comments

Comments
 (0)