Skip to content

Commit a976739

Browse files
committed
Update quotation marks for rebase
1 parent 987207a commit a976739

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test-data/unit/check-custom-plugin.test

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -813,11 +813,11 @@ class Cls:
813813
attr = 'test'
814814
unchanged = 'test'
815815

816-
reveal_type(Cls().attr) # N: Revealed type is 'builtins.str'
817-
reveal_type(Cls.attr) # N: Revealed type is 'builtins.int'
818-
reveal_type(Cls.unchanged) # N: Revealed type is 'builtins.str'
816+
reveal_type(Cls().attr) # N: Revealed type is "builtins.str"
817+
reveal_type(Cls.attr) # N: Revealed type is "builtins.int"
818+
reveal_type(Cls.unchanged) # N: Revealed type is "builtins.str"
819819
x: Type[Cls]
820-
reveal_type(x.attr) # N: Revealed type is 'builtins.int'
820+
reveal_type(x.attr) # N: Revealed type is "builtins.int"
821821
[file mypy.ini]
822822
\[mypy]
823823
plugins=<ROOT>/test-data/unit/plugins/class_attr_hook.py
@@ -829,7 +829,7 @@ class Cls:
829829
def attr(self) -> None:
830830
pass
831831

832-
reveal_type(Cls.attr) # N: Revealed type is 'builtins.int'
832+
reveal_type(Cls.attr) # N: Revealed type is "builtins.int"
833833
[file mypy.ini]
834834
\[mypy]
835835
plugins=<ROOT>/test-data/unit/plugins/class_attr_hook.py
@@ -842,7 +842,7 @@ import enum
842842
class Cls(enum.Enum):
843843
attr = 'test'
844844

845-
reveal_type(Cls.attr) # N: Revealed type is 'builtins.int'
845+
reveal_type(Cls.attr) # N: Revealed type is "builtins.int"
846846
[file mypy.ini]
847847
\[mypy]
848848
plugins=<ROOT>/test-data/unit/plugins/class_attr_hook.py
@@ -858,7 +858,7 @@ B: Any
858858
class Cls(B, metaclass=M):
859859
pass
860860

861-
reveal_type(Cls.attr) # N: Revealed type is 'builtins.int'
861+
reveal_type(Cls.attr) # N: Revealed type is "builtins.int"
862862
[file mypy.ini]
863863
\[mypy]
864864
plugins=<ROOT>/test-data/unit/plugins/class_attr_hook.py

0 commit comments

Comments
 (0)