diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py index 5e567178238..87c16709be3 100644 --- a/Lib/test/test_weakref.py +++ b/Lib/test/test_weakref.py @@ -160,6 +160,9 @@ def test_callable_proxy(self): ref1('twinkies!') self.assert_(o.bar == 'twinkies!', "call through proxy not passed through to original") + ref1(x='Splat.') + self.assert_(o.bar == 'Splat.', + "call through proxy not passed through to original") # expect due to too few args self.assertRaises(TypeError, ref1)