From a7eef21b48c986fe82b94b035dc23da35469f6ec Mon Sep 17 00:00:00 2001 From: Lisandro Dalcin Date: Fri, 9 Apr 2010 02:10:56 -0300 Subject: [PATCH] fix testcase --- tests/run/dict_get.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/dict_get.pyx b/tests/run/dict_get.pyx index d5d905e5..3df02176 100644 --- a/tests/run/dict_get.pyx +++ b/tests/run/dict_get.pyx @@ -84,7 +84,7 @@ def get_default(dict d, key, default): def get_in_condition(dict d, key, expected_result): """ >>> d = dict(a=1, b=2) - >>> getitem_in_condition(d, 'a', 1) + >>> get_in_condition(d, 'a', 1) True """ return d.get(key) is expected_result -- 2.26.2