diff options
Diffstat (limited to 'test/base/test_concurrency_py3k.py')
| -rw-r--r-- | test/base/test_concurrency_py3k.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/test/base/test_concurrency_py3k.py b/test/base/test_concurrency_py3k.py index 8eabece92..1492bc186 100644 --- a/test/base/test_concurrency_py3k.py +++ b/test/base/test_concurrency_py3k.py @@ -63,7 +63,7 @@ class TestAsyncioCompat(fixtures.TestBase):      async def test_await_only_no_greenlet(self):          to_await = run1()          with expect_raises_message( -            exc.InvalidRequestError, +            exc.MissingGreenlet,              r"greenlet_spawn has not been called; can't call await_\(\) here.",          ):              await_only(to_await) @@ -86,7 +86,7 @@ class TestAsyncioCompat(fixtures.TestBase):              await_fallback(inner_await())          with expect_raises_message( -            exc.InvalidRequestError, +            exc.MissingGreenlet,              "greenlet_spawn has not been called and asyncio event loop",          ):              await greenlet_spawn(go)  | 
