Revert tests with over-inferring LiteralString

(cherry picked from commit 0c92e1c64362e2834b01b4e0bcbcedfefe4febe0)

IJ-MR-112631

GitOrigin-RevId: 233abfde16b19e96c5bc39c77eef1a240aa1b3e8
This commit is contained in:
lada.gagina
2023-11-07 22:10:23 +00:00
committed by intellij-monorepo-bot
parent 9661b002e0
commit ad5b55918e
54 changed files with 212 additions and 367 deletions
@@ -3,4 +3,4 @@ class A():
x = ""
b = <warning descr="'LiteralString' object is not callable">A().<caret>x()</warning>
b = <warning descr="'str' object is not callable">A().<caret>x()</warning>
@@ -5,7 +5,7 @@ def b(c):
pass
<warning descr="'LiteralString' object is not callable">@<caret>a</warning>
<warning descr="'str' object is not callable">@<caret>a</warning>
@b
def foo():
pass
@@ -1,4 +1,4 @@
a = "string"
b = <warning descr="'LiteralString' object is not callable">a<caret>()</warning>
b = <warning descr="'str' object is not callable">a<caret>()</warning>