We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3624d9 commit 0bcfa6bCopy full SHA for 0bcfa6b
graalpython/com.oracle.graal.python.test/src/tests/test_interop.py
@@ -482,7 +482,7 @@ def test_java_class(self):
482
assert isinstance(l, ArrayList)
483
self.assertEqual(getattr(ArrayList, 'class'), l.getClass())
484
485
- with self.assertRaisesRegex(TypeError, "__call__\(\) got an unexpected keyword argument 'kwarg'"):
+ with self.assertRaisesRegex(TypeError, r"__call__\(\) got an unexpected keyword argument 'kwarg'"):
486
ArrayList(kwarg=42)
487
488
def test_java_exceptions(self):
0 commit comments