From e51f86c5990617726236ac001789a057d100d869 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Tue, 13 Aug 2024 13:56:14 +0800 Subject: [PATCH] ... --- tests/99_bugs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/99_bugs.py b/tests/99_bugs.py index cb65758c..cd217f75 100644 --- a/tests/99_bugs.py +++ b/tests/99_bugs.py @@ -46,7 +46,7 @@ a = object() b = object() if a is not b: assert True -if a is 0: +if a == 0: assert False def g(x):