Skip to content

Commit bb04065

Browse files
committed
what
1 parent af79ef8 commit bb04065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/units/test_state.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2819,8 +2819,8 @@ class UnionState(BaseState):
28192819
str(UnionState.c3.c2r.c1.foo) == f'{UnionState.c3!s}?.["c2r"]?.["c1"]?.["foo"]' # pyright: ignore [reportOptionalMemberAccess]
28202820
)
28212821
assert (
2822-
str(UnionState.c3.c2r.c1r.foo)
2823-
== f'{UnionState.c3!s}?.["c2r"]?.["c1r"]?.["foo"]' # pyright: ignore [reportOptionalMemberAccess]
2822+
str(UnionState.c3.c2r.c1r.foo) # pyright: ignore [reportOptionalMemberAccess]
2823+
== f'{UnionState.c3!s}?.["c2r"]?.["c1r"]?.["foo"]'
28242824
)
28252825
assert str(UnionState.c3i.c2) == f'{UnionState.c3i!s}?.["c2"]'
28262826
assert str(UnionState.c3r.c2) == f'{UnionState.c3r!s}?.["c2"]'

0 commit comments

Comments
 (0)