mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
gh-107910: Remove not needing newline in error message (GH-107928)
This commit is contained in:
parent
cc2cf85d03
commit
c3887b57a7
2 changed files with 3 additions and 3 deletions
|
@ -989,8 +989,8 @@ class ClassPropertiesAndMethods(unittest.TestCase):
|
|||
|
||||
def test_mro_disagreement(self):
|
||||
# Testing error messages for MRO disagreement...
|
||||
mro_err_msg = """Cannot create a consistent method resolution
|
||||
order (MRO) for bases """
|
||||
mro_err_msg = ("Cannot create a consistent method resolution "
|
||||
"order (MRO) for bases ")
|
||||
|
||||
def raises(exc, expected, callable, *args):
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue