From 6468dfd58d2c615bb43958a9040257e3661b9041 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 4 Mar 2021 20:51:59 +0530 Subject: [PATCH] ... --- src/pyj/testing.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/testing.pyj b/src/pyj/testing.pyj index f218a4b75f..d6aab998d4 100644 --- a/src/pyj/testing.pyj +++ b/src/pyj/testing.pyj @@ -78,7 +78,7 @@ def assert_true(x, msg, call_site=None): 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: raise_fail(f'{x} is truthy', msg, call_site)