Removed check for dotnet

This commit is contained in:
Vova Ivanov 2021-11-23 16:11:27 -08:00
parent 3cc69986eb
commit 39640ab6dc

View file

@ -65,8 +65,6 @@ class TestErrors(unittest.TestCase):
self.assertRaises(RuntimeError, stack.up)
if lang == "go":
self.assertRaisesRegex(RuntimeError, "panic: runtime error", stack.up)
elif lang == "dotnet":
self.assertRaisesRegex(RuntimeError, "an unhandled error occurred", stack.up)
else:
self.assertRaisesRegex(RuntimeError, "failed with an unhandled exception", stack.up)
finally: