diff --git a/test-data/unit/stubgen.test b/test-data/unit/stubgen.test index 927cc5617c75..a7c2ae6d21fd 100644 --- a/test-data/unit/stubgen.test +++ b/test-data/unit/stubgen.test @@ -1364,23 +1364,6 @@ class F: @t.coroutine def g(): ... -[case testCoroutineSpecialCase_import] -import asyncio - -__all__ = ['C'] - -@asyncio.coroutine -def f(): - pass - -class C: - def f(self): - pass -[out] -import asyncio - -class C: - def f(self) -> None: ... -- Tests for stub generation from semantically analyzed trees. -- These tests are much slower, so use the `_semanal` suffix only when needed.