From: Guido van Rossum Date: Tue, 28 Aug 2001 17:58:55 +0000 (+0000) Subject: Fix one test to reflect the change in method lookup policy. X-Git-Tag: v2.2a3~276 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5be8eda37e864ed3c169b8e2c660d3c65eaec38;p=python Fix one test to reflect the change in method lookup policy. --- diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 054dd8710f..d581cff271 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -441,8 +441,7 @@ def pymods(): a.foo = 12 x = a.foo del a.foo - verify(log == [('getattr', '__init__'), - ('getattr', '__setattr__'), + verify(log == [('getattr', '__setattr__'), ("setattr", "foo", 12), ("getattr", "foo"), ('getattr', '__delattr__'),