From 3fe7b17e1f258eecf298ab682fd207043d66f2ca Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Sun, 14 Dec 2025 00:43:58 -0800 Subject: [PATCH] Fix merge race --- test-data/unit/check-python310.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-data/unit/check-python310.test b/test-data/unit/check-python310.test index 1b4a7f3c5bfae..98d6259583688 100644 --- a/test-data/unit/check-python310.test +++ b/test-data/unit/check-python310.test @@ -1795,7 +1795,7 @@ def test1(x: Literal[1,2,3]) -> None: case 1: reveal_type(x) # N: Revealed type is "Literal[1]" case other: - reveal_type(x) # N: Revealed type is "Union[Literal[2], Literal[3]]" + reveal_type(x) # N: Revealed type is "Literal[2] | Literal[3]" def test2(x: Literal[1,2,3]) -> None: match x: @@ -1811,7 +1811,7 @@ def test2(x: Literal[1,2,3]) -> None: def test3(x: Literal[1,2,3]) -> None: match x: case 1 | 3: - reveal_type(x) # N: Revealed type is "Union[Literal[1], Literal[3]]" + reveal_type(x) # N: Revealed type is "Literal[1] | Literal[3]" case other: reveal_type(x) # N: Revealed type is "Literal[2]"