Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-104057: Fix path
  • Loading branch information
Eclips4 committed May 1, 2023
commit b40f33c631649e9a444c8b98e3e170f5154635f2
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