Skip to content

Commit

Permalink
pythongh-104057: Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
Eclips4 committed May 1, 2023
1 parent 59bc36a commit b40f33c
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 b40f33c

Please sign in to comment.