Skip to content

Commit b8608f7

Browse files
committed
Update quotation marks for rebase
1 parent 98edc41 commit b8608f7

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
@@ -740,11 +740,11 @@ class Cls:
740740
attr = 'test'
741741
unchanged = 'test'
742742

743-
reveal_type(Cls().attr) # N: Revealed type is 'builtins.str'
744-
reveal_type(Cls.attr) # N: Revealed type is 'builtins.int'
745-
reveal_type(Cls.unchanged) # N: Revealed type is 'builtins.str'
743+
reveal_type(Cls().attr) # N: Revealed type is "builtins.str"
744+
reveal_type(Cls.attr) # N: Revealed type is "builtins.int"
745+
reveal_type(Cls.unchanged) # N: Revealed type is "builtins.str"
746746
x: Type[Cls]
747-
reveal_type(x.attr) # N: Revealed type is 'builtins.int'
747+
reveal_type(x.attr) # N: Revealed type is "builtins.int"
748748
[file mypy.ini]
749749
\[mypy]
750750
plugins=<ROOT>/test-data/unit/plugins/class_attr_hook.py
@@ -756,7 +756,7 @@ class Cls:
756756
def attr(self) -> None:
757757
pass
758758

759-
reveal_type(Cls.attr) # N: Revealed type is 'builtins.int'
759+
reveal_type(Cls.attr) # N: Revealed type is "builtins.int"
760760
[file mypy.ini]
761761
\[mypy]
762762
plugins=<ROOT>/test-data/unit/plugins/class_attr_hook.py
@@ -769,7 +769,7 @@ import enum
769769
class Cls(enum.Enum):
770770
attr = 'test'
771771

772-
reveal_type(Cls.attr) # N: Revealed type is 'builtins.int'
772+
reveal_type(Cls.attr) # N: Revealed type is "builtins.int"
773773
[file mypy.ini]
774774
\[mypy]
775775
plugins=<ROOT>/test-data/unit/plugins/class_attr_hook.py
@@ -785,7 +785,7 @@ B: Any
785785
class Cls(B, metaclass=M):
786786
pass
787787

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

0 commit comments

Comments
 (0)