This commit is contained in:
Kovid Goyal 2021-03-04 20:51:59 +05:30
parent 57650d92d1
commit 6468dfd58d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -78,7 +78,7 @@ def assert_true(x, msg, call_site=None):
raise_fail(f'{x} is not truthy', msg, call_site) raise_fail(f'{x} is not truthy', msg, call_site)
def assert_fale(x, msg, call_site=None): def assert_false(x, msg, call_site=None):
if x: if x:
raise_fail(f'{x} is truthy', msg, call_site) raise_fail(f'{x} is truthy', msg, call_site)