Skip to content

Commit 381d265

Browse files
migeed-zmeta-codesync[bot]
authored andcommitted
prevent bug=.. from spanning multiple lines
Reviewed By: rchen152 Differential Revision: D91747078 fbshipit-source-id: ba3835c763394b66b8cfdbc000f5068afbbe1356
1 parent 5a6d1a8 commit 381d265

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pyrefly/lib/test/annotation.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
use crate::testcase;
99

1010
testcase!(
11-
bug = "conformance: Type quotes incorrectly referring to shadowing class member
12-
note that this test is likely to be removed: https://github.com/python/typing/pull/2144",
11+
bug = "conformance: Type quotes incorrectly referring to shadowing class member. Note that this test is likely to be removed: https://github.com/python/typing/pull/2144",
1312
test_class_scope_quoted_annotation_bypasses_shadowing,
1413
r#"
1514
from typing import assert_type
@@ -22,8 +21,7 @@ assert_type(D.x, int) # E: assert_type(Any, int) failed
2221
);
2322

2423
testcase!(
25-
bug = "conformance: Union syntax cannot be used with string operand; use quotes around entire expression:
26-
PR #2048 contains a draft implementation",
24+
bug = "conformance: Union syntax cannot be used with string operand; use quotes around entire expression: PR #2048 contains a draft implementation",
2725
test_quoted_type_union_operator_runtime_error,
2826
r#"
2927
class ClassA:

0 commit comments

Comments
 (0)