Skip to content

Commit

Permalink
gh-104057: Fix direct invocation of test_super (#104064)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eclips4 authored May 1, 2023
1 parent 80b7148 commit 605f878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/test/test_super.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class C:
def method(self):
return super().msg

with patch("test.test_super.super", MySuper) as m:
with patch(f"{__name__}.super", MySuper) as m:
self.assertEqual(C().method(), "super super")

def test_shadowed_dynamic_two_arg(self):
Expand All @@ -373,7 +373,7 @@ class C:
def method(self):
return super(1, 2).msg

with patch("test.test_super.super", MySuper) as m:
with patch(f"{__name__}.super", MySuper) as m:
self.assertEqual(C().method(), "super super")
self.assertEqual(call_args, [(1, 2)])

Expand Down

0 comments on commit 605f878

Please sign in to comment.