Add "Py" prefix to AddImportQuickFixTest and several other quick fix tests

otherwise it's easy to overlook it especially considering that there is
also (confusingly) PyAddImportTest
This commit is contained in:
Mikhail Golubev
2017-03-21 18:10:12 +03:00
parent 815aeb4583
commit 532e18e4d9
92 changed files with 5 additions and 5 deletions
@@ -0,0 +1,10 @@
class A():
def __init__(self):
a = 1
class C(A):
def <warning descr="Call to __init__ of super class is missed">__ini<caret>t__</warning>(self):
pass
def foo(self):
pass