Skip to content

Commit 2a0bfbd

Browse files
Update irbuild-classes.test
1 parent c663542 commit 2a0bfbd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

mypyc/test-data/irbuild-classes.test

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2690,14 +2690,14 @@ L0:
26902690
[case testInvalidMypycAttr]
26912691
from mypy_extensions import mypyc_attr
26922692

2693-
@mypyc_attr("allow_interpreted_subclasses", "invalid_arg") # E: 'invalid_arg' is not a supported `mypyc_attr` \
2694-
# N: supported keys: 'allow_interpreted_subclasses', 'free_list_len', 'native_class', 'serializable'
2693+
@mypyc_attr("allow_interpreted_subclasses", "invalid_arg") # E: "invalid_arg" is not a supported "mypyc_attr" \
2694+
# N: supported keys: "allow_interpreted_subclasses", "free_list_len", "native_class", "serializable"
26952695
class InvalidArg:
26962696
pass
2697-
@mypyc_attr(invalid_kwarg=True) # E: 'invalid_kwarg' is not a supported `mypyc_attr` \
2698-
# N: supported keys: 'allow_interpreted_subclasses', 'free_list_len', 'native_class', 'serializable'
2697+
@mypyc_attr(invalid_kwarg=True) # E: "invalid_kwarg" is not a supported "mypyc_attr" \
2698+
# N: supported keys: "allow_interpreted_subclasses", "free_list_len", "native_class", "serializable"
26992699
class InvalidKwarg:
27002700
pass
2701-
@mypyc_attr(str()) # E: All `mypyc_attr` positional arguments must be string literals.
2701+
@mypyc_attr(str()) # E: All "mypyc_attr" positional arguments must be string literals.
27022702
class InvalidLiteral:
27032703
pass

0 commit comments

Comments
 (0)